Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thegridman committed Jan 3, 2025
1 parent 55b2fcd commit 1605fdb
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions test/e2e/clients/client_test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,14 @@ func CreateClientJob(ns, name string, tc ClientTestCase) *batchv1.Job {
Value: extendPort,
})
case ClientTypeGrpc:
grpcAddress := tc.Cluster.ServiceFQDNs["grpc"]
envVars = append(envVars, corev1.EnvVar{
Name: "COHERENCE_GRPC_CHANNELS_DEFAULT_HOST",
Value: tc.Cluster.ServiceFQDNs["grpc"],
Name: "COHERENCE_GRPC_ADDRESS",
Value: grpcAddress,
})
envVars = append(envVars, corev1.EnvVar{
Name: "COHERENCE_GRPC_PORT",
Value: "1408",
})
}

Expand Down

0 comments on commit 1605fdb

Please sign in to comment.