Re: [PATCH] utils: Handle errors in worker threads.

2020-02-05 Thread Christopher Baines
Ludovic Courtès writes: > Hi, > > Christopher Baines skribis: > >> Previously, if an error occurred, the worker fiber simply never sends a >> reply. In the case of HTTP requests to Cuirass, where an exception occurs >> when >> performing a database query, the fiber handling the request blocks

Re: [PATCH] utils: Handle errors in worker threads.

2020-02-05 Thread Ludovic Courtès
Hi, Christopher Baines skribis: > Previously, if an error occurred, the worker fiber simply never sends a > reply. In the case of HTTP requests to Cuirass, where an exception occurs when > performing a database query, the fiber handling the request blocks as it never > gets a response. I think t

[PATCH] utils: Handle errors in worker threads.

2020-02-03 Thread Christopher Baines
Previously, if an error occurred, the worker fiber simply never sends a reply. In the case of HTTP requests to Cuirass, where an exception occurs when performing a database query, the fiber handling the request blocks as it never gets a response. I think that this has the potential to cause the pro