async onopen()

in example-apps/chatbot-rag-app/frontend/src/store/provider.tsx [246:259]


          async onopen(response) {

            if (response.ok) {
              return
            } else if (
              response.status >= 400 &&
              response.status < 500 &&
              response.status !== 429
            ) {
              throw new FatalError()
            } else {
              throw new RetriableError()
            }
          },