Can someone please take a look at my code please? Rate limited constantly
.
22 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!I am being rate limited WAYYY too often. A very simple bot with commands like "ping", "avatar" etc. Not doing many requests at all. Like 3-5 per hour. Any tips?
Perfect, thank you
what logs are you getting to indicate you're being rate limited?
None
Just getting stuck when the commands are updating
So I assumed it was stuck in the queue
When we shouldn't be
you shouldn't update commands on an interval. you should know when they change, so you make the changes, then redeploy manually
Right
So in a command?
Tbf that interval was there just as a test
it should be a separate file that you run when you need to deploy
But that isn't causing my issue
It's getting stuck at line 98 to be more specific if anyone has any idea what's going on?
https://gist.github.com/kerneljay/ed89dc6a811ce8f618e952207bc8fbde#file-bot-js-L98
if it gets stuck there, it's because you're rate limited because you deployed too many commands in a 24 hour period
That line of code was added after this issue occured... that isn't my issue here
Plus, registering command every hour? Is that actually gunna hit the rate-limit?
I mean theres like 5 commands
And never in use
Unknown User•3d ago
Message Not Public
Sign In & Join Server To View
Gotcha
Makes sense
Unknown User•3d ago
Message Not Public
Sign In & Join Server To View
Do i even need to use rest here?
Unknown User•3d ago
Message Not Public
Sign In & Join Server To View
Yep gotcha
thank u
Finally
Now I can actually see the rate limit details
Thank you so much, confident I can fix the deploying commands into its own command and then should be fixed. Appreciate it