Skip to content

Commit

Permalink
Increase timeout for CRI test deadline
Browse files Browse the repository at this point in the history
Signed-off-by: Leonid Kondrashov <[email protected]>
  • Loading branch information
leokondrashov authored and lrq619 committed May 2, 2024
1 parent de0027f commit a168c10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cri/cri_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func invoke(t *testing.T, functionURL string) {
client, conn, err := getClient(functionURL)
require.NoError(t, err, "Failed to dial function URL")
defer conn.Close()
ctxFwd, cancel := context.WithDeadline(context.Background(), time.Now().Add(20*time.Second))
ctxFwd, cancel := context.WithDeadline(context.Background(), time.Now().Add(60*time.Second))
defer cancel()

resp, err := client.SayHello(ctxFwd, &hpb.HelloRequest{Name: reqPayload})
Expand Down

0 comments on commit a168c10

Please sign in to comment.