How to solve the 3 second limit?How to solve webhook only 5 requests per second? #1310
Replies: 1 comment
-
The HTTP driver has a hardcoded limit of 5 concurrent requests. It's unclear if the issue you're running into is actually hitting ratelimits or the HTTP driver declining to process more than that many requests when it should. Please clarify what your issue is. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
$this->discord->on('INTERACTION_CREATE', function (Interaction $interaction) {
$interaction->acknowledgeWithResponse(true);
//other
}
2、How to solve webhook only 5 requests per second?High concurrency requests keep coming up。
Beta Was this translation helpful? Give feedback.
All reactions