From 11814614669a492cf97b804448795e2a92ff019b Mon Sep 17 00:00:00 2001 From: rasswanth-s <43314053+rasswanth-s@users.noreply.github.com> Date: Sun, 15 Oct 2023 17:50:07 +0530 Subject: [PATCH] temporarily disable vpn --- packages/syft/src/syft/node/gateway.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/syft/src/syft/node/gateway.py b/packages/syft/src/syft/node/gateway.py index 051832bd429..4d6b9467cd6 100644 --- a/packages/syft/src/syft/node/gateway.py +++ b/packages/syft/src/syft/node/gateway.py @@ -11,10 +11,10 @@ class Gateway(Node): def post_init(self) -> None: self.node_type = NodeType.GATEWAY super().post_init() - try: - self.connect_to_vpn_self() - except Exception as e: - print("Error connecting to VPN: ", e) + # try: + # self.connect_to_vpn_self() + # except Exception as e: + # print("Error connecting to VPN: ", e) def connect_to_vpn_self(self) -> None: network_service = self.get_service(NetworkService)