mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-23 09:49:01 +00:00
Previously, Hikari's pool name was auto-configured with the value of `spring.datasource.name` that defaults to `testdb`, which brings some confusion. This commit removes the default `testdb` value on `spring.datasource.name` as it is a sane default only for an embedded datasource. It is applied whenever applicable instead. Closes gh-11719