We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a950e9 commit 25ff583Copy full SHA for 25ff583
dbos/dbos.go
@@ -117,7 +117,7 @@ func NewConfig(programmaticConfig config) *config {
117
118
// Load defaults
119
if len(dbosConfig.databaseURL) == 0 {
120
- getLogger().Info("DBOS_SYSTEM_DATABASE_URL not set, using default: postgres://postgres:${PGPASSWORD}@localhost:5432/dbos?sslmode=disable")
+ getLogger().Info("Using default database URL: postgres://postgres:${PGPASSWORD}@localhost:5432/dbos?sslmode=disable")
121
password := url.QueryEscape(os.Getenv("PGPASSWORD"))
122
dbosConfig.databaseURL = fmt.Sprintf("postgres://postgres:%s@localhost:5432/dbos?sslmode=disable", password)
123
}
0 commit comments