Skip to content

Commit

Permalink
[ISSUE alibaba#11880]Fixed the issue of duplicate notifications of co…
Browse files Browse the repository at this point in the history
…nfiguration changes. (alibaba#11881)
  • Loading branch information
stone-98 committed Mar 26, 2024
1 parent ec4f215 commit 3a1f0c2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,8 @@ private void initRpcClientHandler(final RpcClient rpcClientInner) {
*/
rpcClientInner.registerServerRequestHandler((request, connection) -> {
if (request instanceof ConfigChangeNotifyRequest) {
handleConfigChangeNotifyRequest((ConfigChangeNotifyRequest) request, rpcClientInner.getName());
return handleConfigChangeNotifyRequest((ConfigChangeNotifyRequest) request,
rpcClientInner.getName());
}
return null;
});
Expand Down

0 comments on commit 3a1f0c2

Please sign in to comment.