Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
debugTrace("Got response, IP is " + ip + ", response time in seconds is " + str(response_time))
if ip == "no info":
# Got a response but couldn't format it. No point retrying, move to next service or quit
if isAutoSelect(original_source):
errorTrace("common.py", "No location information was returned for IP using " + source + ", using next service")
source = getNextSource(source)
else:
errorTrace("common.py", "No location information was returned for IP using " + source)
break
elif ip == "error" or ip == "no response":
errorTrace("common.py", "Didn't get a good response from " + source)
if isAutoSelect(original_source):
# Only want to retry if this is the first time we've seen an error (recently) otherwise
# we assume it was broken before and it's still broken now and move to the next
if getErrorValue(getIndex(source)) > 1:
source = getNextSource(source)
if ip == "no response": services_used += 1
else:
debugTrace("Retrying " + source + ", in 3 seconds")
xbmc.sleep(3000)
else:
# Only want to retry 2 times if it's not auto select as service is likely broken rather than busy
if retry == 2: break
else:
# Worked, exit loop
break
retry = retry + 1
# Check to see if the call was good (after 5 retries)
if ip == "no info" or ip == "error" or ip == "no response":
if services_used > 3: