Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(log): bump rpcConnectTimeout to 30s
  • Loading branch information
johnstcn committed Aug 12, 2024
commit 7d72b567bdd82a458eb73d044c51d5edb557b51b
5 changes: 4 additions & 1 deletion log/coder.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ import (
)

var (
rpcConnectTimeout = 10 * time.Second
// We set a relatively high connection timeout for the initial connection.
// There is an unfortunate race between the envbuilder container starting and the
// associated provisioner job completing.
rpcConnectTimeout = 30 * time.Second
logSendGracePeriod = 10 * time.Second
minAgentAPIV2 = "v2.9"
)
Expand Down