Skip to content

Commit

Permalink
e2e: address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisSchinnerl committed Sep 17, 2024
1 parent 12807b8 commit e7ad132
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/test/e2e/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ func newTestCluster(t *testing.T, opts testClusterOptions) *TestCluster {

busAddr := fmt.Sprintf("http://%s/bus", busListener.Addr().String())
workerAddr := "http://" + workerListener.Addr().String()
s3Addr := s3Listener.Addr().String() // not fully qualified path
s3Addr := "http://" + s3Listener.Addr().String() // not fully qualified path
autopilotAddr := "http://" + autopilotListener.Addr().String()

// Create clients.
Expand All @@ -338,7 +338,7 @@ func newTestCluster(t *testing.T, opts testClusterOptions) *TestCluster {

mySession := session.Must(session.NewSession())
s3AWSClient := s3aws.New(mySession, aws.NewConfig().
WithEndpoint(fmt.Sprintf("http://%s", s3Addr)).
WithEndpoint(s3Addr).
WithRegion("dummy").
WithS3ForcePathStyle(true).
WithCredentials(credentials.NewCredentials(&credentials.StaticProvider{
Expand Down

0 comments on commit e7ad132

Please sign in to comment.