Skip to content

Commit

Permalink
Rename remain plugin to extensions
Browse files Browse the repository at this point in the history
Signed-off-by: mloufra <mloufra@amazon.com>
  • Loading branch information
mloufra committed Aug 10, 2022
1 parent 2d45db1 commit abbe26f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import java.util.Objects;

/**
* InitializeExtensionsRequest to intialize plugin
* InitializeExtensionsRequest to initialize extension
*
* @opensearch.internal
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import java.util.Objects;

/**
* InitializeExtensionsResponse to intialize plugin
* InitializeExtensionsResponse to initialize extension
*
* @opensearch.internal
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public void extensionsInitialize() {

private void extensionInitialize(DiscoveryNode extensionNode) {
final CountDownLatch inProgressLatch = new CountDownLatch(1);
final TransportResponseHandler<InitializeExtensionsRespons> pluginResponseHandler = new TransportResponseHandler<
final TransportResponseHandler<InitializeExtensionsRespons> extensionResponseHandler = new TransportResponseHandler<
InitializeExtensionsRespons>() {

@Override
Expand Down Expand Up @@ -266,7 +266,7 @@ public String executor() {
extensionNode,
REQUEST_EXTENSION_ACTION_NAME,
new InitializeExtensionsRequest(transportService.getLocalNode(), new ArrayList<DiscoveryExtension>(extensionsList)),
pluginResponseHandler
extensionResponseHandler
);
inProgressLatch.await(100, TimeUnit.SECONDS);
} catch (Exception e) {
Expand Down

0 comments on commit abbe26f

Please sign in to comment.