Skip to content

Commit

Permalink
[Extensions] Fixed duplicate extension unique id (opensearch-project#…
Browse files Browse the repository at this point in the history
…8228)

* Fixes duplicate extension unique id

Signed-off-by: Owais Kazi <owaiskazi19@gmail.com>

* Handled different extension unique id

Signed-off-by: Owais Kazi <owaiskazi19@gmail.com>

---------

Signed-off-by: Owais Kazi <owaiskazi19@gmail.com>
Signed-off-by: Shivansh Arora <hishiv@amazon.com>
  • Loading branch information
owaiskazi19 authored and shiv0408 committed Apr 25, 2024
1 parent d87798c commit 3c18f65
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,10 @@ 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);
String currentId = threadPool.getThreadContext().getHeader("extension_unique_id");
if (Strings.isNullOrEmpty(currentId) || !extensionUniqueId.equals(currentId)) {
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 3c18f65

Please sign in to comment.