summaryrefslogtreecommitdiffstats
path: root/vespa-http-client
diff options
context:
space:
mode:
Diffstat (limited to 'vespa-http-client')
-rw-r--r--vespa-http-client/src/main/java/com/yahoo/vespa/http/client/config/FeedParams.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/config/FeedParams.java b/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/config/FeedParams.java
index 19a28bbacaf..01f314a7e36 100644
--- a/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/config/FeedParams.java
+++ b/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/config/FeedParams.java
@@ -1,8 +1,6 @@
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.http.client.config;
-import com.google.common.annotations.Beta;
-
import java.util.concurrent.TimeUnit;
/**
@@ -54,7 +52,6 @@ public final class FeedParams {
* @param silentUpgrade true for reducing "false" 4xx/5xx.
* @return this, for chaining
*/
- @Beta
public Builder setSilentUpgrade(boolean silentUpgrade) {
this.silentUpgrade = silentUpgrade;
return this;
@@ -184,7 +181,6 @@ public final class FeedParams {
/**
* Set what frequency to poll for async responses. Default is 10hz (every 0.1s), but 1000hz when using SyncFeedClient
*/
- @Beta
public Builder setIdlePollFrequency(Double idlePollFrequency) {
this.idlePollFrequency = idlePollFrequency;
return this;