Spaces:
Sleeping
Sleeping
Commit
·
c59a6b0
1
Parent(s):
06da610
Update app.py
Browse files
app.py
CHANGED
@@ -106,7 +106,7 @@ def do_delete():
|
|
106 |
try:
|
107 |
|
108 |
print("inside delete ping ")
|
109 |
-
x = requests.get(url,timeout=19)
|
110 |
print(x.text)
|
111 |
time.sleep(1800)
|
112 |
except:
|
@@ -129,7 +129,7 @@ def do_ping():
|
|
129 |
print("inside ping ")
|
130 |
for url in urls:
|
131 |
try:
|
132 |
-
x=requests.get(url, timeout=20)
|
133 |
print(x.text)
|
134 |
except Exception as e:
|
135 |
print(e)
|
|
|
106 |
try:
|
107 |
|
108 |
print("inside delete ping ")
|
109 |
+
x = requests.get(url,timeout=19, verify=False)
|
110 |
print(x.text)
|
111 |
time.sleep(1800)
|
112 |
except:
|
|
|
129 |
print("inside ping ")
|
130 |
for url in urls:
|
131 |
try:
|
132 |
+
x=requests.get(url, timeout=20, verify=False)
|
133 |
print(x.text)
|
134 |
except Exception as e:
|
135 |
print(e)
|