Skip to content

Commit

Permalink
Fixes duplicate extension unique id
Browse files Browse the repository at this point in the history
Signed-off-by: Owais Kazi <[email protected]>
  • Loading branch information
owaiskazi19 committed Jun 22, 2023
1 parent 1cf9c5c commit ac39864
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,9 @@ public ConnectionManager.ConnectionValidator connectionValidatorForExtensionConn
) {
return (newConnection, actualProfile, listener) -> {
// We don't validate cluster names to allow for CCS connections.
threadPool.getThreadContext().putHeader("extension_unique_id", extensionUniqueId);
if (Strings.isNullOrEmpty(threadPool.getThreadContext().getHeader("extension_unique_id"))) {
threadPool.getThreadContext().putHeader("extension_unique_id", extensionUniqueId);
}
handshake(newConnection, actualProfile.getHandshakeTimeout().millis(), cn -> true, ActionListener.map(listener, resp -> {
final DiscoveryNode remote = resp.discoveryNode;

Expand Down

0 comments on commit ac39864

Please sign in to comment.