Skip to content
Snippets Groups Projects
Commit 697872cf authored by Paul "LeoNerd" Evans's avatar Paul "LeoNerd" Evans
Browse files

More warnings about invalid results from AS 3PE query

parent b515f844
No related branches found
No related tags found
No related merge requests found
......@@ -187,15 +187,20 @@ class ApplicationServicesHandler(object):
ret = []
for (success, result) in results:
if not success:
logger.warn("Application service failed %r", result)
continue
if not isinstance(result, list):
logger.warn(
"Application service returned an invalid response %r", result
)
continue
for r in result:
if _is_valid_3pentity_result(r, field=required_field):
ret.append(r)
else:
logger.warn("Application service returned an " +
"invalid result %r", r)
logger.warn(
"Application service returned an invalid result %r", r
)
defer.returnValue(ret)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment