From 17a4ca6057f0416e90cc6b693dcd50410dc95973 Mon Sep 17 00:00:00 2001 From: 3err0 Date: Tue, 16 Jun 2020 10:48:08 +0800 Subject: [PATCH] change timeout --- rebootasic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rebootasic b/rebootasic index b375fbb..932a081 100755 --- a/rebootasic +++ b/rebootasic @@ -7,7 +7,7 @@ URL = "http://"+sys.argv[1]+"/cgi-bin/reboot.cgi" USER = sys.argv[2] PASS = sys.argv[3] -h = httplib2.Http(cache=None, timeout=0.2) +h = httplib2.Http(cache=None, timeout=0.5) h.add_credentials(USER, PASS)