Skip to content

Commit 4384c68

Browse files
committed
Increase connection timeout slightly.
1 parent 03eb1b9 commit 4384c68

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
@@ -150,7 +150,7 @@ spec:
150150
- name: CONNECTION_TIMEOUT
151151
description: The connection timeout in milliseconds to use for the domain proxy.
152152
type: string
153-
default: 1000
153+
default: 10000
154154
- name: IDLE_TIMEOUT
155155
description: The idle timeout in milliseconds to use for the domain proxy.
156156
type: string

pkg/domainproxy/common/common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const (
1818
DomainSocketKey = "DOMAIN_SOCKET"
1919
DefaultDomainSocket = "/tmp/domain-socket.sock"
2020
ConnectionTimeoutKey = "CONNECTION_TIMEOUT"
21-
DefaultConnectionTimeout = 1000 * time.Millisecond
21+
DefaultConnectionTimeout = 10000 * time.Millisecond
2222
IdleTimeoutKey = "IDLE_TIMEOUT"
2323
DefaultIdleTimeout = 30000 * time.Millisecond
2424
TCP = "tcp"

0 commit comments

Comments
 (0)