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
ConcurrencyLimit will be useful on the server side to limit the current requests being handled.
However, we can't use ConcurrencyLimit on the server side because:
ConcurrencyLimit
will be useful on the server side to limit the current requests being handled.However, we can't use
ConcurrencyLimit
on the server side because:client
package and;armeria/core/src/main/java/com/linecorp/armeria/client/limit/ConcurrencyLimit.java
Line 17 in df2c0e9
ClientRequestContext
is used as the argument of theacquire()
method.armeria/core/src/main/java/com/linecorp/armeria/client/limit/ConcurrencyLimit.java
Line 137 in df2c0e9
So we need to move
ConcurrencyLimit
tocommon
package first and implementConcurrencyLimitingService
similar toConcurrencyLimitingClient
Discord thread: https://discord.com/channels/1087271586832318494/1087272728177942629/1328988059827568752
The text was updated successfully, but these errors were encountered: