500 responses do not bubble up to the UI
Description
CSP Request Details
CSP Rejection Details
Potential Workaround
defines
has to be done after
Checklist
hideTestRail: Results
Activity
Zak BurkeDecember 23, 2021 at 12:59 PM
@Pavel Spichonak, handle all status codes >= 400. You don't need individual handlers for 401, 402, 40X, etc, but all 4xx and 5xx response-codes should result in a user notification. A good display option is ErrorModal
. The native browser alert is really a fallback, effectively indicating "this is an unhandled exception", but if that's all we have time for, it's fine by me; it's better than swallowing the error because at least it tells the user something went wrong.
Pavel SpichonakDecember 23, 2021 at 9:33 AMEdited
@Cheryl Malmborg @Zak Burke could you please list what status codes we need to handle and what error messages we need to show for this status codes? And should we use native browser dialog(alert) or our custom dialog?
Cheryl MalmborgDecember 9, 2021 at 5:32 PM
@Stephanie Buck I would leave this as a P2. I don't know how common it is for the errors to be ignored, but ignoring them can lead to problems that take a long time to surface and troubleshoot.
Zak BurkeDecember 1, 2021 at 6:24 PM
@julie.bickle, by default resources are configured with throwErrors: true
which means stripes-connect will generate a JS alert when it encounters a 4xx or 5xx response, as in the screenshots in https://folio-org.atlassian.net/browse/CIRC-1349#icft=CIRC-1349. But devs have the option to set throwErrors: false
which essentially tells stripes-connect "I'll handle this; don't send that alert." The bug here is that instead of silencing stripes-connect and then handling the error, some resources silence stripes-connect and then ignore the error.
julie.bickleDecember 1, 2021 at 5:53 PMEdited
Just checking @Zak Burke: The error message that once see e.g. in this bug https://folio-org.atlassian.net/browse/CIRC-1349#icft=CIRC-1349 (see the screenshots) is NOT what you're describing in this bug?
Catastrophic response-code 500 errors such as the one described in https://folio-org.atlassian.net/browse/CIRC-662#icft=CIRC-662 should bubble up to the UI but they do not; no information is presented in the UI about the status of the request.
422 errors (e.g. for an invalid barcode) do bubble up and show a modal in the UI describing the error response. I think all errors should function this way.