Skip to content

Commit

Permalink
Extend RunnableServer shutdown cutoff (#1460) (#1477)
Browse files Browse the repository at this point in the history
Hopefully this reduces timing issues on heavily loaded CI nodes.
  • Loading branch information
grantr authored and knative-prow-robot committed Jun 26, 2019
1 parent 90c5aca commit c451132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/utils/runnable_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func TestRunnableServerShutdownContext(t *testing.T) {

// Give the request time to start
time.Sleep(time.Millisecond * 50)
shutdownCh := time.After(time.Millisecond * 20)
shutdownCh := time.After(time.Millisecond * 50)

close(stopCh)

Expand Down

0 comments on commit c451132

Please sign in to comment.