aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/main/java/com/yahoo/config/subscription/ConfigSubscriber.java
diff options
context:
space:
mode:
Diffstat (limited to 'config/src/main/java/com/yahoo/config/subscription/ConfigSubscriber.java')
-rw-r--r--config/src/main/java/com/yahoo/config/subscription/ConfigSubscriber.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/config/src/main/java/com/yahoo/config/subscription/ConfigSubscriber.java b/config/src/main/java/com/yahoo/config/subscription/ConfigSubscriber.java
index ad131f8e0dd..b4750eebfee 100644
--- a/config/src/main/java/com/yahoo/config/subscription/ConfigSubscriber.java
+++ b/config/src/main/java/com/yahoo/config/subscription/ConfigSubscriber.java
@@ -43,9 +43,6 @@ public class ConfigSubscriber implements AutoCloseable {
/** The last complete config generation received by this */
private long generation = -1;
- /** Whether the last generation received was due to a system-internal redeploy, not an application package change */
- private boolean internalRedeploy = false;
-
/**
* Whether the last generation should only be applied on restart, not immediately.
* Once this is set it will not be unset, as no future generation should be applied
@@ -262,7 +259,6 @@ public class ConfigSubscriber implements AutoCloseable {
h.setChanged(false); // Reset this flag, if it was set, the user should have acted on it the last time this method returned true.
}
boolean reconfigDue;
- boolean internalRedeployOnly = true;
do {
boolean allGenerationsChanged = true;
boolean allGenerationsTheSame = true;
@@ -279,7 +275,6 @@ public class ConfigSubscriber implements AutoCloseable {
allGenerationsTheSame &= currentGen.equals(config.getGeneration());
allGenerationsChanged &= config.isGenerationChanged();
anyConfigChanged |= config.isConfigChanged();
- internalRedeployOnly &= config.isInternalRedeploy();
applyOnRestartOnly |= requireChange && config.applyOnRestart(); // only if this is reconfig
timeLeftMillis = timeoutInMillis + started - System.currentTimeMillis();
}
@@ -301,7 +296,6 @@ public class ConfigSubscriber implements AutoCloseable {
// Also if appropriate update the changed flag on the handler, which clients use.
markSubsChangedSeen(currentGen);
synchronized (monitor) {
- internalRedeploy = internalRedeployOnly;
generation = currentGen;
}
}
@@ -491,12 +485,6 @@ public class ConfigSubscriber implements AutoCloseable {
}
/**
- * Whether the current config generation received by this was due to a system-internal redeploy,
- * not an application package change
- */
- public boolean isInternalRedeploy() { synchronized (monitor) { return internalRedeploy; } }
-
- /**
* Convenience interface for clients who only subscribe to one config. Implement this, and pass it to {@link ConfigSubscriber#subscribe(SingleSubscriber, Class, String)}.
*
* @author vegardh