From 015a54046136c3f46a2ddcc909af234a04f6cbc7 Mon Sep 17 00:00:00 2001 From: maxdml Date: Thu, 4 Sep 2025 11:56:59 -0700 Subject: [PATCH 1/2] we can go get from latest now --- cmd/dbos/cli_integration_test.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cmd/dbos/cli_integration_test.go b/cmd/dbos/cli_integration_test.go index 954d3dc7..427b63c2 100644 --- a/cmd/dbos/cli_integration_test.go +++ b/cmd/dbos/cli_integration_test.go @@ -159,11 +159,6 @@ func testProjectInitialization(t *testing.T, cliPath string) { modCmd := exec.Command("go", "mod", "tidy") modOutput, err := modCmd.CombinedOutput() require.NoError(t, err, "go mod tidy failed: %s", string(modOutput)) - - // TEMPORARY: go get github.com/dbos-inc/dbos-transact-golang/cmd/dbos@dbos-migration - tmpCmd := exec.Command("go", "get", "github.com/dbos-inc/dbos-transact-golang/cmd/dbos@dbos-migration") - tmpOutput, err := tmpCmd.CombinedOutput() - require.NoError(t, err, "Failed to get dbos-migration: %s", string(tmpOutput)) } // testApplicationLifecycle starts the application and triggers workflows From b55a36d9e61b37cd951eb468b9bdf609308ab5ac Mon Sep 17 00:00:00 2001 From: maxdml Date: Thu, 4 Sep 2025 11:57:14 -0700 Subject: [PATCH 2/2] fix info log for go drivers --- cmd/dbos/postgres.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/dbos/postgres.go b/cmd/dbos/postgres.go index 20b21cef..a36734d7 100644 --- a/cmd/dbos/postgres.go +++ b/cmd/dbos/postgres.go @@ -174,7 +174,7 @@ func startDockerPostgres() error { return err } - logger.Info("Postgres available", "url", fmt.Sprintf("postgresql://postgres:%s@localhost:5432", password)) + logger.Info("Postgres available", "url", fmt.Sprintf("postgres://postgres:%s@localhost:5432", password)) return nil }