Revert "SERVER-65769 Enable featureFlagQETextSearchPreview (#37871)" (#37929)

GitOrigin-RevId: 5e1b2e62da39bfece38aea46c815fa0e4171d8e4
This commit is contained in:
Gabriel Marks
2025-06-30 14:39:24 -04:00
committed by MongoDB Bot
parent 1940365bf2
commit f41f4d1c8a
3 changed files with 50 additions and 2 deletions

View File

@@ -515,6 +515,11 @@ def mongo_shell_program(
val = str(mongo_set_parameters[key])
args.append(f"--setShellParameter={key}={val}")
# if featureFlagQETextSearchPreview is enabled in setParameter, enable it in the shell also
# TODO: SERVER-65769 remove once FF is enabled by default
if mongod_set_parameters.get("featureFlagQETextSearchPreview"):
args.append("--setShellParameter=featureFlagQETextSearchPreview=true")
# Apply the rest of the command line arguments.
_apply_kwargs(args, kwargs)