diff --git a/RFS/src/main/java/org/opensearch/migrations/bulkload/workcoordination/OpenSearchWorkCoordinator.java b/RFS/src/main/java/org/opensearch/migrations/bulkload/workcoordination/OpenSearchWorkCoordinator.java index 53f230fa9..1f46c6e83 100644 --- a/RFS/src/main/java/org/opensearch/migrations/bulkload/workcoordination/OpenSearchWorkCoordinator.java +++ b/RFS/src/main/java/org/opensearch/migrations/bulkload/workcoordination/OpenSearchWorkCoordinator.java @@ -188,26 +188,29 @@ public void setup(Supplier s var response = httpClient.makeJsonRequest( AbstractedHttpClient.POST_METHOD, - INDEX_NAME + "/_update/" + workItemId, + INDEX_NAME + "/doc/" + workItemId +"/_update", null, body ); diff --git a/RFS/src/testFixtures/java/org/opensearch/migrations/bulkload/SupportedClusters.java b/RFS/src/testFixtures/java/org/opensearch/migrations/bulkload/SupportedClusters.java index 1a39e4477..edd80ebc0 100644 --- a/RFS/src/testFixtures/java/org/opensearch/migrations/bulkload/SupportedClusters.java +++ b/RFS/src/testFixtures/java/org/opensearch/migrations/bulkload/SupportedClusters.java @@ -15,17 +15,19 @@ public class SupportedClusters { public static List sources() { return List.of( - SearchClusterContainer.ES_V6_8_23, - SearchClusterContainer.ES_V7_10_2, - SearchClusterContainer.ES_V7_17, - SearchClusterContainer.OS_V1_3_16 + SearchClusterContainer.ES_V6_8_23 +// SearchClusterContainer.ES_V7_10_2, +// SearchClusterContainer.ES_V7_17, +// SearchClusterContainer.OS_V1_3_16 ); } public static List targets() { return List.of( - SearchClusterContainer.OS_V1_3_16, - SearchClusterContainer.OS_V2_14_0 + SearchClusterContainer.ES_V6_8_23 + +// SearchClusterContainer.OS_V1_3_16, +// SearchClusterContainer.OS_V2_14_0 ); } }