Skip to content

Commit d7bcee0

Browse files
author
rongzhus
committed
v1.0.10
1 parent c601a9a commit d7bcee0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

synctl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import time
2020
import requests
2121
import urllib3
2222

23-
VERSION = "1.0.9"
23+
VERSION = "1.0.10"
2424

2525
# disable warning when certificate is self signed
2626
# InsecureRequestWarning: Unverified HTTPS request is being made to host 'some url'.
@@ -1601,7 +1601,7 @@ class SyntheticTest(Base):
16011601
test_frequency_length),
16021602
self.fill_space(str(t["active"]), active_length),
16031603
self.fill_space(location_str),
1604-
t['configuration']['url'])
1604+
t['configuration']['url'] if 'url' in t['configuration'] else 'None')
16051605
output_lists.append(t)
16061606
if t['configuration']['syntheticType'] in [HTTPScript_TYPE, WebpageScript_TYPE, BrowserScript_TYPE]:
16071607
if len(t['locations']) > 0:
@@ -1664,7 +1664,7 @@ class SyntheticTest(Base):
16641664
response_time_length),
16651665
self.fill_space(str(t["active"]), active_length),
16661666
self.fill_space(location_str),
1667-
t['configuration']['url'])
1667+
t['configuration']['url'] if 'url' in t['configuration'] else 'None')
16681668
output_lists.append(t)
16691669
if (t['configuration']['syntheticType'] in [HTTPScript_TYPE, WebpageScript_TYPE, BrowserScript_TYPE]):
16701670
if len(t['locations']) > 0:

0 commit comments

Comments
 (0)