Skip to content

Commit

Permalink
Fixing neural search name check for default use case integ test (#607)
Browse files Browse the repository at this point in the history
fixing neural search name

Signed-off-by: Joshua Palis <[email protected]>
(cherry picked from commit 8820d89)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Mar 22, 2024
1 parent e442a15 commit 30d8c49
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ public void testDefaultSemanticSearchUseCaseWithFailureExpected() throws Excepti

// Distribution build contains all plugins, checking if plugins are part of the integration test cluster
List<String> plugins = catPlugins();
if (plugins.contains("opensearch-knn") && plugins.contains("neural-search")) {
if (plugins.contains("opensearch-knn") && plugins.contains("opensearch-neural-search")) {
getAndAssertWorkflowStatus(client(), workflowId, State.PROVISIONING, ProvisioningProgress.IN_PROGRESS);
} else {
// expecting a failure since there is no neural-search plugin in cluster to provide text-embedding processor
Expand Down

0 comments on commit 30d8c49

Please sign in to comment.