You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: using-gatewayd/global-configuration/clients.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,7 @@ GatewayD supports multiple client configurations. Each client in each configurat
24
24
| receiveDeadline | duration (string) | 0s | Valid duration strings | The amount of time the client should wait before giving up on call to receive. `0s` disables receive deadline. This k |
25
25
| receiveTimeout | duration (string) | 0s | Valid duration strings | The amount of time the client should wait before giving up on call to receive. `0s` disables receive timeout. |
26
26
| sendDeadline | duration (string) | 0s | Valid duration strings | The amount of time the client should wait before giving up on call to send. `0s` disables send deadline. |
27
+
| dialTimeout | duration (string) | 60s | Valid duration strings | The amount of time the client should wait before giving up on dialing the database. `0s` disables dial timeout. |
27
28
28
29
```yaml
29
30
clients:
@@ -36,4 +37,5 @@ clients:
36
37
receiveDeadline: 0s# duration, 0ms/0s means no deadline
37
38
receiveTimeout: 0s# duration, 0ms/0s means no timeout
38
39
sendDeadline: 0s# duration, 0ms/0s means no deadline
40
+
dialTimeout: 60s# duration, 0ms/0s means no timeout
0 commit comments