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
This is something I've noticed using oas-client when the service I'm pinging all of a sudden goes down, axios returns the 503, but oas-client doesn't filter that back through to the created client.
constclient=oasClient.create(schema);client.doAction({ ... }).then((s)=>{}).catch((e)=>{});// Never gets called on 503
Checking, it looks like the path lib/make-api-call.js:makeApiCall is the cause.