Skip to content

Commit 1d40630

Browse files
Apply suggestions from code review
Co-authored-by: Danny Kopping <danny@coder.com>
1 parent 7e4a1dc commit 1d40630

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cli/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2160,7 +2160,7 @@ func startBuiltinPostgres(ctx context.Context, cfg config.Root, logger slog.Logg
21602160
embeddedpostgres.DefaultConfig().
21612161
Version(embeddedpostgres.V13).
21622162
BinariesPath(filepath.Join(cfg.PostgresPath(), "bin")).
2163-
// Default BinaryRepositoryURL repo1.maven.apache.org is flaky.
2163+
// Default BinaryRepositoryURL repo1.maven.org is flaky.
21642164
BinaryRepositoryURL("https://repo.maven.apache.org/maven2").
21652165
DataPath(filepath.Join(cfg.PostgresPath(), "data")).
21662166
RuntimePath(filepath.Join(cfg.PostgresPath(), "runtime")).

scripts/embedded-pg/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func main() {
2424
embeddedpostgres.DefaultConfig().
2525
Version(embeddedpostgres.V16).
2626
BinariesPath(filepath.Join(postgresPath, "bin")).
27-
// Default BinaryRepositoryURL repo1.maven.apache.org is flaky.
27+
// Default BinaryRepositoryURL repo1.maven.org is flaky.
2828
BinaryRepositoryURL("https://repo.maven.apache.org/maven2").
2929
DataPath(filepath.Join(postgresPath, "data")).
3030
RuntimePath(filepath.Join(postgresPath, "runtime")).

0 commit comments

Comments
 (0)