summaryrefslogtreecommitdiffhomepage
path: root/gui
diff options
context:
space:
mode:
Diffstat (limited to 'gui')
-rw-r--r--gui/src/main/daemon-rpc.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/gui/src/main/daemon-rpc.ts b/gui/src/main/daemon-rpc.ts
index 32fc7adccf..c8cad6fa6a 100644
--- a/gui/src/main/daemon-rpc.ts
+++ b/gui/src/main/daemon-rpc.ts
@@ -584,6 +584,9 @@ 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),
+ // Prevents grpc-js from parsing the `http_proxy` environment variable and trying to use it
+ // even for IPC sockets.
+ 'grpc.enable_http_proxy': 0,
};
/* eslint-enable @typescript-eslint/naming-convention */
}