Commit 819b530b authored by Jondy Zhao's avatar Jondy Zhao

Disable check_no_default_route thread.

parent f3ccd7a2
...@@ -341,7 +341,6 @@ def main(): ...@@ -341,7 +341,6 @@ def main():
call(if_rt) call(if_rt)
if_rt += x[1:] if_rt += x[1:]
call(if_rt[:3] + ['add', 'proto', 'static'] + if_rt[4:]) call(if_rt[:3] + ['add', 'proto', 'static'] + if_rt[4:])
else: else:
def check_no_default_route(): def check_no_default_route():
try: try:
...@@ -360,7 +359,7 @@ def main(): ...@@ -360,7 +359,7 @@ def main():
exit(1) exit(1)
t = threading.Thread(target=check_no_default_route) t = threading.Thread(target=check_no_default_route)
t.daemon = True t.daemon = True
t.start() # t.start()
# adding tap-windows driver will break others, so we add # adding tap-windows driver will break others, so we add
# all drivers here # all drivers here
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment