From 072f61ef02d02b1d3b1db99d033b2a0c343ca539 Mon Sep 17 00:00:00 2001 From: Thomas Farr Date: Fri, 19 Jul 2024 00:21:22 +1200 Subject: [PATCH] Skip failing indices.put_alias YAML tests (#719) Signed-off-by: Thomas Farr (cherry picked from commit 1db3d60e6073e4d5e05def4b2e2c6beb70aafd17) --- tests/Tests.YamlRunner/SkipList.fs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/Tests.YamlRunner/SkipList.fs b/tests/Tests.YamlRunner/SkipList.fs index a68a0c2ac9..e87adfacba 100644 --- a/tests/Tests.YamlRunner/SkipList.fs +++ b/tests/Tests.YamlRunner/SkipList.fs @@ -35,7 +35,11 @@ let SkipList = dict [ // Incorrectly being run due to OpenSearch 1.x/2.x being numerically <7.2.0, but feature-wise >7.10 SkipFile "cat.indices/10_basic.yml", Section "Test cat indices output for closed index (pre 7.2.0)" SkipFile "cluster.health/10_basic.yml", Section "cluster health with closed index (pre 7.2.0)" - + + // Variations of `indices.put_alias` that accept index/alias in request body rather than path which are not supported by .NET client + // https://github.com/opensearch-project/opensearch-net/issues/718 + SkipFile "indices.put_alias/10_basic.yml", All + // .NET method arg typings make this not possible, index is a required parameter SkipFile "indices.put_mapping/all_path_options_with_types.yml", Section "put mapping with blank index"