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
In this particular case, a user changed their login email from one address to another, and this started triggering 404s when hubot when to look up the old address's meeting info:
[Mon Aug 12 2019 17:30:55 GMT+0000 (Coordinated Universal Time)] ERROR Failed to fetch next available meeting: { Error: Request failed with status code 404 at createError (/hubot/node_modules/axios/lib/core/createError.js:16:15) at settle (/hubot/node_modules/axios/lib/core/settle.js:17:12) at IncomingMessage.handleStreamEnd (/hubot/node_modules/axios/lib/adapters/http.js:237:11) at IncomingMessage.emit (events.js:187:15) at endReadableNT (_stream_readable.js:1085:12) at process._tickCallback (internal/process/next_tick.js:63:19)
Further down, when looking at the actual 404 response:
I think our basic fix here is to update nextAvailableMeeting to use Promise.allSettled instead of Promise.all, and, if there are any failed users, refresh the users list and try again.
EDIT: On second thought, rather than refreshing and trying again, use the ones that worked, and also refresh the users list for future attempts?
There was another occurrence of this here -- in this case some old accounts were pruned but Heimdall didn't get the message.
Note we also realized, during that thread, that we're not making use of the UserType to filter pro accounts. May want to include that update in the fix for this issue. [EDIT: created issue #164 to address the UserType thing]
Relevant flowdock discussion.
In this particular case, a user changed their login email from one address to another, and this started triggering 404s when hubot when to look up the old address's meeting info:
Further down, when looking at the actual 404 response:
The text was updated successfully, but these errors were encountered: