Fixed command's 'running in background' output

'Oskar' on discord pointed out 2 distinct commands had
identical output which was confusing
This commit is contained in:
Klaas van Schelven
2025-07-14 16:12:15 +02:00
parent 2b46bfe9a1
commit 770ccb1622
2 changed files with 2 additions and 2 deletions

View File

@@ -7,4 +7,4 @@ class Command(BaseCommand):
def handle(self, *args, **options): def handle(self, *args, **options):
vacuum_eventless_issuetags.delay() vacuum_eventless_issuetags.delay()
self.stdout.write("Started tag vacuum via task queue.") self.stdout.write("Called vacuum_eventless_issuetags.delay(); the task will run in the background (snapea).")

View File

@@ -7,4 +7,4 @@ class Command(BaseCommand):
def handle(self, *args, **options): def handle(self, *args, **options):
vacuum_tagvalues.delay() vacuum_tagvalues.delay()
self.stdout.write("Started tag vacuum via task queue.") self.stdout.write("Called vacuum_tagvalues.delay(); the task will run in the background (snapea).")