Skip to content

Commit

Permalink
revert start stop synx
Browse files Browse the repository at this point in the history
Signed-off-by: Attila Mészáros <csviri@gmail.com>
  • Loading branch information
csviri committed Dec 20, 2023
1 parent 621120f commit 219ef27
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,7 @@ public void changeNamespaces(Set<String> namespaces) {
}

@Override
public synchronized void start() {
if (isRunning()) {
return;
}
public void start() {
temporaryResourceCache = new TemporaryResourceCache<>(this, parseResourceVersions);
this.cache = new InformerManager<>(client, configuration, this);
cache.setConfigurationService(configurationService);
Expand All @@ -89,10 +86,7 @@ public synchronized void start() {
}

@Override
public synchronized void stop() {
if (!isRunning()) {
return;
}
public void stop() {
super.stop();
manager().stop();
}
Expand Down

0 comments on commit 219ef27

Please sign in to comment.