Skip to content

Commit 0b280cb

Browse files
committed
Increase idle timeout slightly.
1 parent 8cd7ea5 commit 0b280cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deploy/tasks/buildah-oci-ta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ spec:
154154
- name: IDLE_TIMEOUT
155155
description: The idle timeout in milliseconds to use for the domain proxy.
156156
type: string
157-
default: 20000
157+
default: 30000
158158
- name: PROXY_TARGET_WHITELIST
159159
description: Comma separated whitelist of target hosts for the domain proxy.
160160
type: string

pkg/domainproxy/common/common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const (
2020
ConnectionTimeoutKey = "CONNECTION_TIMEOUT"
2121
DefaultConnectionTimeout = 10000 * time.Millisecond
2222
IdleTimeoutKey = "IDLE_TIMEOUT"
23-
DefaultIdleTimeout = 20000 * time.Millisecond
23+
DefaultIdleTimeout = 30000 * time.Millisecond
2424
TCP = "tcp"
2525
UNIX = "unix"
2626
)

0 commit comments

Comments
 (0)