Merge "Runtime: less strict for resource limiting"

This commit is contained in:
Zuul 2018-07-26 05:11:12 +00:00 committed by Gerrit Code Review
commit 71d9158e7c
1 changed files with 4 additions and 5 deletions

View File

@ -98,16 +98,15 @@ def _invoke_function(execution_id, zip_file_dir, module_name, method, arg,
'pid': pid
}
)
if not root_resp.ok:
return_dict['result'] = root_resp.content
return_dict['success'] = False
sys.exit(0)
sys.path.insert(0, zip_file_dir)
sys.stdout = open("%s.out" % execution_id, "w", 0)
if not root_resp.ok:
print('WARN: Resource limiting failed, run in unlimit mode.')
print('Start execution: %s' % execution_id)
sys.path.insert(0, zip_file_dir)
try:
module = importlib.import_module(module_name)
func = getattr(module, method)