Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ public synchronized void shutdown() {
}

this.mcmpHandler.shutdown();
this.established = false;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ public void init(Collection<ProxyConfiguration> proxies, MCMPConnectionListener
this.add(proxy.getRemoteAddress(), proxy.getLocalAddress());
}

this.processPendingDiscoveryEvents();
this.status(false);
} finally {
lock.unlock();
Expand All @@ -131,6 +132,7 @@ public void init(Collection<ProxyConfiguration> proxies, MCMPConnectionListener
@Override
public void shutdown() {
this.init = false;
this.established.set(false);

Lock lock = this.proxiesLock.readLock();
lock.lock();
Expand Down
Loading