Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ class Command(BaseCommand):

def add_arguments(self, parser):
# Removed flags — provide clear error messages for operators with old automation.
parser.add_argument(
"--experimental",
action="store_true",
default=False,
help="(Removed) reindex_studio is no longer experimental.",
)
parser.add_argument(
"--reset",
action="store_true",
Expand Down Expand Up @@ -85,6 +91,11 @@ def handle(self, *args, **options):
"The --incremental flag has been removed. "
"Incremental population is now the default behavior of this command."
)
if options["experimental"]:
log.warning(
"The --experimental flag has been removed. "
"reindex_studio is now a stable command, so the flag is no longer necessary."
)

result = rebuild_index_incremental.delay()

Expand Down
Loading