summaryrefslogtreecommitdiffstats
path: root/jdisc_core
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2020-09-28 17:38:19 +0200
committerJon Bratseth <bratseth@gmail.com>2020-09-28 17:38:19 +0200
commitb12c17ea5e8a738570bc897e0fcd1e7f19688688 (patch)
treeaa48cbfe679e9ca1c5b83812e8e6cf45257784ab /jdisc_core
parentaf1d10a394b55cc0d31575bf979cecbbc177c568 (diff)
parent22e2f5ad80aedfe8ed3a9af7c7c11244ef184ed3 (diff)
Merge branch 'master' into bratseth/autoscaling-reconfiguration-events
Diffstat (limited to 'jdisc_core')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/Response.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/Response.java b/jdisc_core/src/main/java/com/yahoo/jdisc/Response.java
index c3d07a70e14..c3e386b020c 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/Response.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/Response.java
@@ -87,6 +87,7 @@ public class Response {
int UNPROCESSABLE_ENTITY = 422;
int LOCKED = 423;
int FAILED_DEPENDENCY = 424;
+ int TOO_MANY_REQUESTS = 429;
/** 5xx: Server Error - The server failed to fulfill an apparently valid request. */
int INTERNAL_SERVER_ERROR = 500;