Skip to content

Commit

Permalink
Increase idle timeout slightly.
Browse files Browse the repository at this point in the history
  • Loading branch information
tecarter94 committed Dec 9, 2024
1 parent 9bff732 commit 8cd7ea5
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 @@ -154,7 +154,7 @@ spec:
- name: IDLE_TIMEOUT
description: The idle timeout in milliseconds to use for the domain proxy.
type: string
default: 10000
default: 20000
- name: PROXY_TARGET_WHITELIST
description: Comma separated whitelist of target hosts 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 @@ -20,7 +20,7 @@ const (
ConnectionTimeoutKey = "CONNECTION_TIMEOUT"
DefaultConnectionTimeout = 10000 * time.Millisecond
IdleTimeoutKey = "IDLE_TIMEOUT"
DefaultIdleTimeout = 10000 * time.Millisecond
DefaultIdleTimeout = 20000 * time.Millisecond
TCP = "tcp"
UNIX = "unix"
)
Expand Down

0 comments on commit 8cd7ea5

Please sign in to comment.