Skip to content

Commit

Permalink
Increase connection timeout slightly.
Browse files Browse the repository at this point in the history
  • Loading branch information
tecarter94 committed Dec 9, 2024
1 parent 03eb1b9 commit 4384c68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy/tasks/buildah-oci-ta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ spec:
- name: CONNECTION_TIMEOUT
description: The connection timeout in milliseconds to use for the domain proxy.
type: string
default: 1000
default: 10000
- name: IDLE_TIMEOUT
description: The idle timeout in milliseconds to use for the domain proxy.
type: string
Expand Down
2 changes: 1 addition & 1 deletion pkg/domainproxy/common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const (
DomainSocketKey = "DOMAIN_SOCKET"
DefaultDomainSocket = "/tmp/domain-socket.sock"
ConnectionTimeoutKey = "CONNECTION_TIMEOUT"
DefaultConnectionTimeout = 1000 * time.Millisecond
DefaultConnectionTimeout = 10000 * time.Millisecond
IdleTimeoutKey = "IDLE_TIMEOUT"
DefaultIdleTimeout = 30000 * time.Millisecond
TCP = "tcp"
Expand Down

0 comments on commit 4384c68

Please sign in to comment.