Skip to content

Commit

Permalink
test/interop: increase pick_first timeout (#5529)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanli-ml committed Jul 25, 2022
1 parent 9a689dc commit b695a7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion interop/test_utils.go
Expand Up @@ -655,7 +655,8 @@ func DoPickFirstUnary(tc testgrpc.TestServiceClient) {
Payload: pl,
FillServerId: true,
}
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
// TODO(mohanli): Revert the timeout back to 10s once TD migrates to xdstp.
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
defer cancel()
var serverID string
for i := 0; i < rpcCount; i++ {
Expand Down

0 comments on commit b695a7f

Please sign in to comment.