Skip to content

Commit d37c0e5

Browse files
Fix typo in feature flag (#134971)
Closes #134969 Co-authored-by: Martijn van Groningen <[email protected]>
1 parent f82eec3 commit d37c0e5

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

test/test-clusters/src/main/java/org/elasticsearch/test/cluster/FeatureFlag.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public enum FeatureFlag {
2121
DOC_VALUES_SKIPPER("es.doc_values_skipper_feature_flag_enabled=true", Version.fromString("8.18.1"), null),
2222
IVF_FORMAT("es.ivf_format_feature_flag_enabled=true", Version.fromString("9.1.0"), null),
2323
LOGS_STREAM("es.logs_stream_feature_flag_enabled=true", Version.fromString("9.1.0"), null),
24-
PATTERN_TEXT("es.patterned_text_feature_flag_enabled=true", Version.fromString("9.1.0"), null),
24+
PATTERN_TEXT("es.pattern_text_feature_flag_enabled=true", Version.fromString("9.1.0"), null),
2525
SYNTHETIC_VECTORS("es.mapping_synthetic_vectors=true", Version.fromString("9.2.0"), null),
2626
RERANK_SNIPPETS("es.text_similarity_reranker_snippets=true", Version.fromString("9.2.0"), null);
2727

x-pack/plugin/logsdb/src/javaRestTest/java/org/elasticsearch/xpack/logsdb/patterntext/PatternTextBasicRestIT.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
import com.carrotsearch.randomizedtesting.annotations.ParametersFactory;
1111

12-
import org.apache.lucene.tests.util.LuceneTestCase;
1312
import org.elasticsearch.client.Request;
1413
import org.elasticsearch.client.Response;
1514
import org.elasticsearch.common.settings.Settings;
@@ -33,7 +32,6 @@
3332
import static org.hamcrest.Matchers.equalTo;
3433
import static org.hamcrest.Matchers.is;
3534

36-
@LuceneTestCase.AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/134969")
3735
public class PatternTextBasicRestIT extends ESRestTestCase {
3836

3937
@ClassRule

0 commit comments

Comments
 (0)