You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{"state":"error","error":"Simulation library file \"sample.tif\" does not exist"}
The source of the problem is lib_file_abspath raises a UserAlert. However, it doesn't know the context. It should probably throw a NotFound, but that will break the application for other GET operations.
I think the solution the problem is to render it as a server error if it is a GET, and include the error message in the rendered HTML.
The text was updated successfully, but these errors were encountered:
- restructured sirepo.reply to avoid early json serialization
- restructured srunit to handle replies more consistently between websocket and http
- Fix#6291 restructured job_api to simplify parameters
- Fix#6293 clean up stateless/fulCompute to pass correct parameters
- Fix#6288 api_serverStatus calls asyncio.sleep
- Fix#6157 removed exportJupyterNotebook and cruft in create_archive
- Fix#6274 avoid returning json for GET on errors, include detail in HTML
- HTML is always properly rendered (formally didn't include doctype)
{"state":"error","error":"Simulation library file \"sample.tif\" does not exist"}
The source of the problem is lib_file_abspath raises a UserAlert. However, it doesn't know the context. It should probably throw a NotFound, but that will break the application for other GET operations.
I think the solution the problem is to render it as a server error if it is a GET, and include the error message in the rendered HTML.
The text was updated successfully, but these errors were encountered: