diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2023-11-17 15:34:13 +0100 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2023-11-17 16:03:13 +0100 |
| commit | df2ee7c0ef79769702a0cfad42849f98bf528ad7 (patch) | |
| tree | 1481f7fdefaaa904345190e1c3e1780302241672 /gui/src | |
| parent | df8e5ecbe9fd57b4991c8b0ed67abb12db7ace87 (diff) | |
| download | mullvadvpn-df2ee7c0ef79769702a0cfad42849f98bf528ad7.tar.xz mullvadvpn-df2ee7c0ef79769702a0cfad42849f98bf528ad7.zip | |
Prevent gRPC channel from entering the idle state
Diffstat (limited to 'gui/src')
| -rw-r--r-- | gui/src/main/daemon-rpc.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gui/src/main/daemon-rpc.ts b/gui/src/main/daemon-rpc.ts index 65ad96519c..174b2aea77 100644 --- a/gui/src/main/daemon-rpc.ts +++ b/gui/src/main/daemon-rpc.ts @@ -699,6 +699,7 @@ export class DaemonRpc { 'grpc.initial_reconnect_backoff_ms': 3000, 'grpc.keepalive_time_ms': Math.pow(2, 30), 'grpc.keepalive_timeout_ms': Math.pow(2, 30), + 'grpc.client_idle_timeout_ms': Math.pow(2, 30), }; /* eslint-enable @typescript-eslint/naming-convention */ } |
