Skip to content

Commit

Permalink
temporarily disable vpn
Browse files Browse the repository at this point in the history
  • Loading branch information
rasswanth-s committed Oct 15, 2023
1 parent b6dc962 commit 1181461
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/syft/src/syft/node/gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1181461

Please sign in to comment.