summaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src/main/java
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-05-29 08:59:02 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-05-29 08:59:02 +0000
commitb67314ad44ef44564eed6ffd2f523c241b3d2e0f (patch)
treef99c2476cafb1eb48e47396a5d00f13187eea49b /vespaclient-container-plugin/src/main/java
parentc2f0bf7951099883154696d9cc040383463ec676 (diff)
Remove control of slow start. That was a blind alley.
Diffstat (limited to 'vespaclient-container-plugin/src/main/java')
-rw-r--r--vespaclient-container-plugin/src/main/java/com/yahoo/document/restapi/resource/RestApi.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/vespaclient-container-plugin/src/main/java/com/yahoo/document/restapi/resource/RestApi.java b/vespaclient-container-plugin/src/main/java/com/yahoo/document/restapi/resource/RestApi.java
index ccd2d80efb2..cf33b6033cd 100644
--- a/vespaclient-container-plugin/src/main/java/com/yahoo/document/restapi/resource/RestApi.java
+++ b/vespaclient-container-plugin/src/main/java/com/yahoo/document/restapi/resource/RestApi.java
@@ -99,10 +99,7 @@ public class RestApi extends LoggingRequestHandler {
}
// For testing and development
- public RestApi(Executor executor,
- AccessLog accessLog,
- OperationHandler operationHandler,
- int threadsAvailable) {
+ RestApi(Executor executor, AccessLog accessLog, OperationHandler operationHandler, int threadsAvailable) {
super(executor, accessLog, null);
this.operationHandler = operationHandler;
this.threadsAvailableForApi = new AtomicInteger(threadsAvailable);