My app runs in Node.js in a cluster, so multiple processes might make a request to Twitch at the same time. If I go the way Twitch suggest and only refresh reactively, when multiple processes will make a request at the same time and fail, they will all try to refresh the token, which is bad. This is what I’m trying to understand how to avoid. Is that enough information?