Infinite Rate Limit & Global(...) ?

So I had an occurance of my bot not working due to rateImiting. Pictured are the overall occurance of the RLs, the initial message send occurance, and the first of the 12 following RLs but this time for interaction callback. https://srcb.in/ef0BLdsEyx Any thoughts? The message send appears to be my message send on command use for a particuarly high-usage slash command.
28 Replies
Unknown User
Unknown User2y ago
Message Not Public
Sign In & Join Server To View
Yinoguns
Yinoguns2y ago
DJS v14.7.1 Node v16.19.0 I'm particuarly curious why the second one says Global(POST:/.../callback) but is flagged as global: false
Unknown User
Unknown User2y ago
Message Not Public
Sign In & Join Server To View
Yinoguns
Yinoguns2y ago
Yea looks like nobody has any input or thoughts
Syjalo
Syjalo2y ago
@ckohen probably you can answer this
ckohen
ckohen2y ago
Ok, so that question about why it says Global but isn’t a global rate limit is good, and is semi related to an issue open in api docs. The Global buckets are for things that don’t have a major id to bucket off of, so in that sense they share one global rate limit for the entire route. The global rate limit indicator tells us if you hit a 429 that was actually global (we have recently learned is not so global) or the 50/s cap is about to be hit and we preemptively stall the request. So while it’s a global bucket (across all servers and such) the rate limit can still be local (only that route). Some of that needs to be fixed and that is being worked on Now what I don’t understand is how the callback is being locally ratelimited. As far as I can remember, each callback is currently in its own handler (yikes, this is being fixed too) meaning it should never have a chance to hit a local ratelimit. I have a few wacky theory about what might be able to happen, but pretty sure it can’t, so I’ll tell you that later if I find out it can happen in the code
Yinoguns
Yinoguns2y ago
@ckohen Excellent thanks, it's concerning as it killed all commands for my bot due to Rate Limits even though it doesn't get anywhere near 50/s If I can help in anyway, please shout. @syjalo I appreciste yanking ckohen in 🙂
ckohen
ckohen2y ago
Oh, by the way the highlighted line with limit: Infinity is saying that the handler has no request limit (which is why it’s so weird that it hit one), not that the timeout is infinite
Yinoguns
Yinoguns2y ago
Ah thanks for the clarification
ckohen
ckohen2y ago
We’re going to be implementing a special handler for interaction callbacks that should solve most of this problem.
Yinoguns
Yinoguns2y ago
Legendary, thankfully the issue doesn't seem to have happened again It happened again today, makes my bot hang entierly... Is there a way to disable retry...if retry on RL is a thing...
ckohen
ckohen2y ago
you tell the reject on rate limit handler to throw
Yinoguns
Yinoguns2y ago
I'll add thsy tomorrow, I already do it for crossposts, thought I'd make sure Made a change to do so in addition to my crosspost throw:
if (rateLimitData.route.endsWith('/crosspost')) {
// Throw for Publishes
return true;
}
if (rateLimitData.limit === Number.POSITIVE_INFINITY) {
console.log(`Threw the Infinity Rate Limit out the airlock: ${rateLimitData.route}`)
// Throw for the infinity bug
return true;
}
if (rateLimitData.route.endsWith('/crosspost')) {
// Throw for Publishes
return true;
}
if (rateLimitData.limit === Number.POSITIVE_INFINITY) {
console.log(`Threw the Infinity Rate Limit out the airlock: ${rateLimitData.route}`)
// Throw for the infinity bug
return true;
}
ckohen
ckohen2y ago
.limit isn't how long the ratelimit is, its the maximum number of requests before you hit the ratelimit
Yinoguns
Yinoguns2y ago
Ok...but if I get a RateLimit rejection of limit infinity, then it will throw it and stop looping. Is there a reason I wouldn't want to throw one which has an infinite limit? Or can you suggest a better criteria?
ckohen
ckohen2y ago
it works, just thought you'd specifically call out callback but actually, feel free to let us now if that is thrown any other time would be good to know
Yinoguns
Yinoguns2y ago
Cool shall do 👍 So it's been a hot minute since I removed sending log messages for the highly used function and all seems fine, so I guess something was going on there...
Yinoguns
Yinoguns17mo ago
@ckohen This dude in another thread can reliably create the Infinity issue locally (with non-callback)
ckohen
ckohen17mo ago
That’s not an issue at all. That’s behaving correctly. As i said before having infinity limit means there is no “local” ratelimit on the endpoint. Which will be true for most GET requests. Webhooks have some interesting shared ratelimits
Yinoguns
Yinoguns17mo ago
Ok, so why does the RL trigger at all? I still don't understand whst this RL is
ckohen
ckohen17mo ago
It’s a shared ratelimit, there is no indication of why it happens. Discord does not punish these requests.
Yinoguns
Yinoguns17mo ago
So it's bascially a rogue rate limit without an explanation or an actual rate limit timeout?
ckohen
ckohen17mo ago
Timeout exists, it’s listed as timeToReset. But we don’t know anything else about it
Yinoguns
Yinoguns17mo ago
So the reset for them in 50ms Same for me
ckohen
ckohen17mo ago
yes
Yinoguns
Yinoguns5mo ago
Alright cool. So 50ms RL with no explanation as to why, what a bugger Damn, it happened again:
Jan 20 15:27:40 Threw the Infinity Rate Limit out the airlock: /interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjE2ODEwOTk0MDgwNzpHV3FzS3lQeVBlcEg4QlZNZkprajVKaGhQUWc4YjF4V3ZVUXFNZ2VvQ2xjMmNrYUp2RUJKS21zcFV0NWFzQWFHTkhqdVFyaEJhWE8wSHBIRUNMc1Y4NUZTamF2VGkyZHdLN2R0TFRGSGF4RjM0MDNyMEFaV1htaW5ReFFESDJPSA/callback
Jan 20 15:27:40 There was an Error with an Autocomplete Interaction RateLimitError[/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjE2ODEwOTk0MDgwNzpHV3FzS3lQeVBlcEg4QlZNZkprajVKaGhQUWc4YjF4V3ZVUXFNZ2VvQ2xjMmNrYUp2RUJKS21zcFV0NWFzQWFHTkhqdVFyaEJhWE8wSHBIRUNMc1Y4NUZTamF2VGkyZHdLN2R0TFRGSGF4RjM0MDNyMEFaV1htaW5ReFFESDJPSA/callback]
Jan 20 15:27:40 at SequentialHandler.onRateLimit (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:442:13)
Jan 20 15:27:40 at runMicrotasks (<anonymous>)
Jan 20 15:27:40 at processTicksAndRejections (node:internal/process/task_queues:96:5)
Jan 20 15:27:40 at async SequentialHandler.runRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:613:7)
Jan 20 15:27:40 at async SequentialHandler.queueRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:464:14)
Jan 20 15:27:40 at async REST.request (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:910:22)
Jan 20 15:27:40 at async AutocompleteInteraction.respond (/app/node_modules/discord.js/src/structures/AutocompleteInteraction.js:86:5)
Jan 20 15:27:40 at async handler (file:///app/src/functions/interactions/autocomplete/autocompleteHandler.js:129:5)
Jan 20 15:27:40 at async interactionHandler (file:///app/src/bot.js:1472:7)
Jan 20 15:27:40 Threw the Infinity Rate Limit out the airlock: /interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjE2ODEwOTk0MDgwNzpHV3FzS3lQeVBlcEg4QlZNZkprajVKaGhQUWc4YjF4V3ZVUXFNZ2VvQ2xjMmNrYUp2RUJKS21zcFV0NWFzQWFHTkhqdVFyaEJhWE8wSHBIRUNMc1Y4NUZTamF2VGkyZHdLN2R0TFRGSGF4RjM0MDNyMEFaV1htaW5ReFFESDJPSA/callback
Jan 20 15:27:40 There was an Error with an Autocomplete Interaction RateLimitError[/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjE2ODEwOTk0MDgwNzpHV3FzS3lQeVBlcEg4QlZNZkprajVKaGhQUWc4YjF4V3ZVUXFNZ2VvQ2xjMmNrYUp2RUJKS21zcFV0NWFzQWFHTkhqdVFyaEJhWE8wSHBIRUNMc1Y4NUZTamF2VGkyZHdLN2R0TFRGSGF4RjM0MDNyMEFaV1htaW5ReFFESDJPSA/callback]
Jan 20 15:27:40 at SequentialHandler.onRateLimit (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:442:13)
Jan 20 15:27:40 at runMicrotasks (<anonymous>)
Jan 20 15:27:40 at processTicksAndRejections (node:internal/process/task_queues:96:5)
Jan 20 15:27:40 at async SequentialHandler.runRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:613:7)
Jan 20 15:27:40 at async SequentialHandler.queueRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:464:14)
Jan 20 15:27:40 at async REST.request (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:910:22)
Jan 20 15:27:40 at async AutocompleteInteraction.respond (/app/node_modules/discord.js/src/structures/AutocompleteInteraction.js:86:5)
Jan 20 15:27:40 at async handler (file:///app/src/functions/interactions/autocomplete/autocompleteHandler.js:129:5)
Jan 20 15:27:40 at async interactionHandler (file:///app/src/bot.js:1472:7)
This time an Autocomplete Followed by the command itself:
Jan 20 15:28:52 Threw the Infinity Rate Limit out the airlock: /interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback
Jan 20 15:28:52 Interaction Error: RateLimitError[/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback]
Jan 20 15:28:52 at SequentialHandler.onRateLimit (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:442:13)
Jan 20 15:28:52 at runMicrotasks (<anonymous>)
Jan 20 15:28:52 at processTicksAndRejections (node:internal/process/task_queues:96:5)
Jan 20 15:28:52 at async SequentialHandler.runRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:613:7)
Jan 20 15:28:52 at async SequentialHandler.queueRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:464:14)
Jan 20 15:28:52 at async REST.request (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:910:22)
Jan 20 15:28:52 at async ChatInputCommandInteraction.deferReply (/app/node_modules/discord.js/src/structures/interfaces/InteractionResponses.js:69:5)
Jan 20 15:28:52 at async Module.execute (file:///app/src/commands/stockpile/stockpile.js:192:3)
Jan 20 15:28:52 at async interactionHandler (file:///app/src/bot.js:1944:5) {
Jan 20 15:28:52 timeToReset: 50,
Jan 20 15:28:52 limit: Infinity,
Jan 20 15:28:52 Threw the Infinity Rate Limit out the airlock: /interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback
Jan 20 15:28:52 Interaction Error: RateLimitError[/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback]
Jan 20 15:28:52 at SequentialHandler.onRateLimit (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:442:13)
Jan 20 15:28:52 at runMicrotasks (<anonymous>)
Jan 20 15:28:52 at processTicksAndRejections (node:internal/process/task_queues:96:5)
Jan 20 15:28:52 at async SequentialHandler.runRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:613:7)
Jan 20 15:28:52 at async SequentialHandler.queueRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:464:14)
Jan 20 15:28:52 at async REST.request (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:910:22)
Jan 20 15:28:52 at async ChatInputCommandInteraction.deferReply (/app/node_modules/discord.js/src/structures/interfaces/InteractionResponses.js:69:5)
Jan 20 15:28:52 at async Module.execute (file:///app/src/commands/stockpile/stockpile.js:192:3)
Jan 20 15:28:52 at async interactionHandler (file:///app/src/bot.js:1944:5) {
Jan 20 15:28:52 timeToReset: 50,
Jan 20 15:28:52 limit: Infinity,
Jan 20 15:28:52 method: 'POST',
Jan 20 15:28:52 hash: 'Global(POST:/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback)',
Jan 20 15:28:52 url: 'https://discord.com/api/v10/interactions/1066016468770242631/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback',
Jan 20 15:28:52 route: '/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback',
Jan 20 15:28:52 majorParameter: 'global',
Jan 20 15:28:52 global: false
Jan 20 15:28:52 }
Jan 20 15:28:52 method: 'POST',
Jan 20 15:28:52 hash: 'Global(POST:/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback)',
Jan 20 15:28:52 url: 'https://discord.com/api/v10/interactions/1066016468770242631/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback',
Jan 20 15:28:52 route: '/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback',
Jan 20 15:28:52 majorParameter: 'global',
Jan 20 15:28:52 global: false
Jan 20 15:28:52 }
🫥 And finally a message send for when the command errors itself, which crashed the bot and I now protect against:
Jan 20 15:28:52 Threw the Infinity Rate Limit out the airlock: /interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback
Jan 20 15:28:52 Error Handling was Threw itself RateLimitError[/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback]
Jan 20 15:28:52 at SequentialHandler.onRateLimit (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:442:13)
Jan 20 15:28:52 at runMicrotasks (<anonymous>)
Jan 20 15:28:52 at processTicksAndRejections (node:internal/process/task_queues:96:5)
Jan 20 15:28:52 at async SequentialHandler.runRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:613:7)
Jan 20 15:28:52 at async SequentialHandler.queueRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:464:14)
Jan 20 15:28:52 at async REST.request (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:910:22)
Jan 20 15:28:52 at async ChatInputCommandInteraction.reply (/app/node_modules/discord.js/src/structures/interfaces/InteractionResponses.js:111:5)
Jan 20 15:28:52 at async interactionHandler (file:///app/src/bot.js:1965:11)
Jan 20 15:28:52 Threw the Infinity Rate Limit out the airlock: /interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback
Jan 20 15:28:52 Error Handling was Threw itself RateLimitError[/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback]
Jan 20 15:28:52 at SequentialHandler.onRateLimit (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:442:13)
Jan 20 15:28:52 at runMicrotasks (<anonymous>)
Jan 20 15:28:52 at processTicksAndRejections (node:internal/process/task_queues:96:5)
Jan 20 15:28:52 at async SequentialHandler.runRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:613:7)
Jan 20 15:28:52 at async SequentialHandler.queueRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:464:14)
Jan 20 15:28:52 at async REST.request (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:910:22)
Jan 20 15:28:52 at async ChatInputCommandInteraction.reply (/app/node_modules/discord.js/src/structures/interfaces/InteractionResponses.js:111:5)
Jan 20 15:28:52 at async interactionHandler (file:///app/src/bot.js:1965:11)
Jan 20 15:28:52 Error with stockpile - code - graphic RateLimitError[/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback]
Jan 20 15:28:52 at SequentialHandler.onRateLimit (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:442:13)
Jan 20 15:28:52 at runMicrotasks (<anonymous>)
Jan 20 15:28:52 at processTicksAndRejections (node:internal/process/task_queues:96:5)
Jan 20 15:28:52 at async SequentialHandler.runRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:613:7)
Jan 20 15:28:52 at async SequentialHandler.queueRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:464:14)
Jan 20 15:28:52 at async REST.request (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:910:22)
Jan 20 15:28:52 at async ChatInputCommandInteraction.deferReply (/app/node_modules/discord.js/src/structures/interfaces/InteractionResponses.js:69:5)
Jan 20 15:28:52 at async Module.execute (file:///app/src/commands/stockpile/stockpile.js:192:3)
Jan 20 15:28:52 at async interactionHandler (file:///app/src/bot.js:1944:5) {
Jan 20 15:28:52 timeToReset: 50,
Jan 20 15:28:52 limit: Infinity,
Jan 20 15:28:52 method: 'POST',
Jan 20 15:28:52 Error with stockpile - code - graphic RateLimitError[/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback]
Jan 20 15:28:52 at SequentialHandler.onRateLimit (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:442:13)
Jan 20 15:28:52 at runMicrotasks (<anonymous>)
Jan 20 15:28:52 at processTicksAndRejections (node:internal/process/task_queues:96:5)
Jan 20 15:28:52 at async SequentialHandler.runRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:613:7)
Jan 20 15:28:52 at async SequentialHandler.queueRequest (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:464:14)
Jan 20 15:28:52 at async REST.request (/app/node_modules/discord.js/node_modules/@discordjs/rest/dist/index.js:910:22)
Jan 20 15:28:52 at async ChatInputCommandInteraction.deferReply (/app/node_modules/discord.js/src/structures/interfaces/InteractionResponses.js:69:5)
Jan 20 15:28:52 at async Module.execute (file:///app/src/commands/stockpile/stockpile.js:192:3)
Jan 20 15:28:52 at async interactionHandler (file:///app/src/bot.js:1944:5) {
Jan 20 15:28:52 timeToReset: 50,
Jan 20 15:28:52 limit: Infinity,
Jan 20 15:28:52 method: 'POST',
Jan 20 15:28:52 hash: 'Global(POST:/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback)',
Jan 20 15:28:52 url: 'https://discord.com/api/v10/interactions/1066016468770242631/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback',
Jan 20 15:28:52 route: '/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback',
Jan 20 15:28:52 majorParameter: 'global',
Jan 20 15:28:52 global: false
Jan 20 15:28:52 }
Jan 20 15:28:52 State changed from up to crashed
Jan 20 15:28:52 hash: 'Global(POST:/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback)',
Jan 20 15:28:52 url: 'https://discord.com/api/v10/interactions/1066016468770242631/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback',
Jan 20 15:28:52 route: '/interactions/:id/aW50ZXJhY3Rpb246MTA2NjAxNjQ2ODc3MDI0MjYzMTpzVGlTWEtSSnlaSHBMWmxGcVVrcFN5R0pTYmExOHozbWpmcEswcmRrUXJEMmdQUGZ6VmYxY1pWMGFZcTNsMUlsRVMzN1pRajFzNzBCeHFrU3lkazZQMHZXV2g4cnJaMlI4YmJ0bW1UN0I5UUlCV2paeTJCckRQcEx4OGhybng2bg/callback',
Jan 20 15:28:52 majorParameter: 'global',
Jan 20 15:28:52 global: false
Jan 20 15:28:52 }
Jan 20 15:28:52 State changed from up to crashed
blobsweats again todsy 😐
Yinoguns
Yinoguns5mo ago
Yea recapping my mind on what was up. Super weird, happened to my log channel post and it wss the only one at the time. Super curious.
No description