Feature #2281
openAbility to abort a redux request from webserver
0%
Description
I've noticed that redux is still attempting to read an mrc image in our deadlocked system even after I changed my selection of image in the webviewer to a cached one. If we have a way to abort the request that we can call when the selection is changed, it may help with the data I/O crisis?
Updated by Anchi Cheng over 11 years ago
In fact, when redux is waiting for the mrc to be read, the web page can not be reloaded, either. Maybe the abort can be based on a configurable timeout on reading the image.
Updated by Jim Pulokas about 11 years ago
- Assignee changed from Jim Pulokas to Anchi Cheng
probably because single threaded request handling. Can only handle one at a time and may have to wait a long time. try going back to multithreaded request handling. look for a way to have a timeout that cancels a request handler. could already be some parameter to set in server or request handler.