Skip to content

Commit

Permalink
Enh 37496193 - [37496162->24.09.2] General refactoring and hardening …
Browse files Browse the repository at this point in the history
…of the gRPC APIs

(merge ce/main -> ce/24.09 113661)

[git-p4: depot-paths = "//dev/coherence-ce/release/coherence-ce-v24.09/": change = 113662]
  • Loading branch information
thegridman committed Jan 21, 2025
1 parent 3fafdc0 commit d7c06af
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
* Copyright (c) 2000, 2024, Oracle and/or its affiliates.
* Copyright (c) 2000, 2025, Oracle and/or its affiliates.
*
* Licensed under the Universal Permissive License v 1.0 as shown at
* https://oss.oracle.com/licenses/upl.
Expand Down Expand Up @@ -950,8 +950,11 @@ public void unregisterChannel(com.tangosol.net.messaging.Channel channel)

MapListenerProxy proxyListener = (MapListenerProxy) channel.getAttribute(ATTR_LISTENER);
_assert(proxyListener != null);

cache.removeMapListener(this);

if (cache.isActive())
{
cache.removeMapListener(this);
}
Connection conn = channel.getConnection();
if (conn instanceof com.tangosol.coherence.component.net.extend.Connection)
{
Expand Down

0 comments on commit d7c06af

Please sign in to comment.