Skip to content

Commit

Permalink
fix(api): handle more out-of-memory errors in the workers
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Mar 16, 2023
1 parent dfba5f0 commit c8c5e9f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/onnx_web/worker/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ def worker_main(context: WorkerContext, server: ServerContext):
)
exit(EXIT_ERROR)
except Exception as e:
if "Failed to allocate memory" in str(e) or "CUDA out of memory" in str(e):
e_str = str(e)
if "Failed to allocate memory" in e_str or "out of memory" in e_str:
logger.error("detected out-of-memory error, exiting: %s", e)
exit(EXIT_MEMORY)
else:
Expand Down

0 comments on commit c8c5e9f

Please sign in to comment.