Commit db0a53dc authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki Committed by Jérome Perrin

log runSimulation result.

parent f2eea936
......@@ -106,7 +106,10 @@ def runSimulation():
process.join()
return jsonify(dict(error='Timeout after %s seconds' % timeout))
return jsonify(queue.get())
result = queue.get()
app.logger.debug("resulth:\n%s" % (json.dumps(result,
sort_keys=True, indent=2)))
return jsonify(result)
def _runSimulation(parameter_dict, queue):
try:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment