diff --git a/storage/grpc_client.go b/storage/grpc_client.go index 4748e269e2d6..424d2a287a4e 100644 --- a/storage/grpc_client.go +++ b/storage/grpc_client.go @@ -105,8 +105,7 @@ func defaultGRPCOptions() []option.ClientOption { // Only enable DirectPath when the emulator is not being targeted. defaults = append(defaults, internaloption.EnableDirectPath(true), - internaloption.EnableDirectPathXds(), - internaloption.AllowNonDefaultServiceAccount(true)) + internaloption.EnableDirectPathXds()) } return defaults diff --git a/storage/integration_test.go b/storage/integration_test.go index 7b6e5ae465a6..02bdd60f6437 100644 --- a/storage/integration_test.go +++ b/storage/integration_test.go @@ -343,6 +343,7 @@ var readCases = []readCase{ // 3. DC not detected with dual region bucket in EUR4 // 4. DC not detected with regional bucket in EUROPE-WEST1 func TestIntegration_DetectDirectConnectivityInGCE(t *testing.T) { + t.Skip("Does not work in kokoro yet") ctx := skipHTTP("grpc only test") multiTransportTest(ctx, t, func(t *testing.T, ctx context.Context, bucket string, prefix string, client *Client) { h := testHelper{t}