Worker throwing uninformative exceptions

I have a bunch of exceptions that are of the following two formats. How do I interpret this? Additionally - What does Status 0 mean? - What does an exception with Status 200 mean?
No description
No description
2 Replies
Erisa
Erisa10mo ago
What does Status 0 mean?
Usually, that no response was returned. Would that make sense for that log entry?
What does an exception with Status 200 mean?
Do you make use of waitUntil? It could mean that a response of 200 was returned but then the waitUntil kept running and threw an exception
liam | helius.dev
Usually, that no response was returned. Would that make sense for that log entry?
For these they all come from GET's, on our platform the only GET is from websockets, where we either return the standard 101 response, or a failure with reason
Do you make use of waitUntil? It could mean that a response of 200 was returned but then the waitUntil kept running and threw an exception
We do make use of waitUntil a lot, I can investigate that