File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import time
2020import requests
2121import 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 :
You can’t perform that action at this time.
0 commit comments