Skip to content

Commit dc3ec0f

Browse files
author
Raghuveer Raavi
committed
Updated error response for 'tooManyConcurrencyRequests' to be more descriptive
1 parent dbc0afa commit dc3ec0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/scala/src/main/scala/org/apache/openwhisk/http/ErrorResponse.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ object Messages {
7272

7373
/** Standard message for too many concurrent activation requests within a time window. */
7474
def tooManyConcurrentRequests(count: Int, allowed: Int) =
75-
s"Too many concurrent requests in flight (count: $count, allowed: $allowed)."
75+
s"Too many concurrent requests in flight (currently running: $count, allowed per controller: $allowed)."
7676

7777
/** System overload message. */
7878
val systemOverloaded = "System is overloaded, try again later."

0 commit comments

Comments
 (0)