Skip to content

Commit b695a7f

Browse files
authored
test/interop: increase pick_first timeout (#5529)
1 parent 9a689dc commit b695a7f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

interop/test_utils.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,8 @@ func DoPickFirstUnary(tc testgrpc.TestServiceClient) {
655655
Payload: pl,
656656
FillServerId: true,
657657
}
658-
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
658+
// TODO(mohanli): Revert the timeout back to 10s once TD migrates to xdstp.
659+
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
659660
defer cancel()
660661
var serverID string
661662
for i := 0; i < rpcCount; i++ {

0 commit comments

Comments
 (0)