Commit ce850e3ab13089a284e96491280c48dd17c1a92e
1 parent
cb02e6bf
Exists in
master
Revert traceback.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
flaskr/controllers/main_controller.py
... | ... | @@ -571,7 +571,7 @@ def compute(): # process the queue of estimation requests |
571 | 571 | |
572 | 572 | except Exception as e: |
573 | 573 | errmsg = u"Computation failed : %s" % (e,) |
574 | - errmsg = u"%s\n\n%s" % (errmsg, traceback.format_exc()) | |
574 | + # errmsg = u"%s\n\n%s" % (errmsg, traceback.format_exc()) | |
575 | 575 | if estimation: |
576 | 576 | _handle_failure(estimation, errmsg) |
577 | 577 | return _respond(errmsg) | ... | ... |