Skip to content

Commit

Permalink
v1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
rongzhus committed Sep 11, 2023
1 parent c601a9a commit d7bcee0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions synctl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import time
import requests
import urllib3

VERSION = "1.0.9"
VERSION = "1.0.10"

# disable warning when certificate is self signed
# InsecureRequestWarning: Unverified HTTPS request is being made to host 'some url'.
Expand Down Expand Up @@ -1601,7 +1601,7 @@ class SyntheticTest(Base):
test_frequency_length),
self.fill_space(str(t["active"]), active_length),
self.fill_space(location_str),
t['configuration']['url'])
t['configuration']['url'] if 'url' in t['configuration'] else 'None')
output_lists.append(t)
if t['configuration']['syntheticType'] in [HTTPScript_TYPE, WebpageScript_TYPE, BrowserScript_TYPE]:
if len(t['locations']) > 0:
Expand Down Expand Up @@ -1664,7 +1664,7 @@ class SyntheticTest(Base):
response_time_length),
self.fill_space(str(t["active"]), active_length),
self.fill_space(location_str),
t['configuration']['url'])
t['configuration']['url'] if 'url' in t['configuration'] else 'None')
output_lists.append(t)
if (t['configuration']['syntheticType'] in [HTTPScript_TYPE, WebpageScript_TYPE, BrowserScript_TYPE]):
if len(t['locations']) > 0:
Expand Down

0 comments on commit d7bcee0

Please sign in to comment.