Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
majst01 committed Aug 18, 2024
1 parent 74d950f commit 32f34f2
Show file tree
Hide file tree
Showing 9 changed files with 252 additions and 212 deletions.
31 changes: 22 additions & 9 deletions api/v1/backup_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 20 additions & 8 deletions api/v1/database_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 20 additions & 8 deletions api/v1/initializer_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions cmd/internal/backup/providers/gcp/gcp_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ type connectionDetails struct {
func startFakeGcsContainer(t testing.TB, ctx context.Context) (testcontainers.Container, *connectionDetails) {
c, err := testcontainers.GenericContainer(ctx, testcontainers.GenericContainerRequest{
ContainerRequest: testcontainers.ContainerRequest{
Image: "fsouza/fake-gcs-server", // tested with fsouza/fake-gcs-server:1.47.4
ExposedPorts: []string{"4443"},
Image: "fsouza/fake-gcs-server", // tested with fsouza/fake-gcs-server:1.47.4
// ExposedPorts: []string{"4443"},
HostConfigModifier: func(hc *container.HostConfig) {
// Unfortunately we must use host network as the public host must exactly match the client endpoint
// see for example: https://github.com/fsouza/fake-gcs-server/issues/196
Expand All @@ -212,7 +212,8 @@ func startFakeGcsContainer(t testing.TB, ctx context.Context) (testcontainers.Co
},
Cmd: []string{"-backend", "memory", "-log-level", "debug", "-public-host", "localhost:4443"},
WaitingFor: wait.ForAll(
wait.ForListeningPort("4443/tcp"),
// wait.ForListeningPort("4443/tcp"),
wait.ForLog("server started"),
),
},
Started: true,
Expand Down
Loading

0 comments on commit 32f34f2

Please sign in to comment.