From ecf8e79fddcfd5b885fac3c29231edbcd73a12d8 Mon Sep 17 00:00:00 2001 From: Alexander Haase Date: Tue, 30 Jul 2024 11:53:52 +0200 Subject: [PATCH] Fix runscript management command Defining names for background jobs was disabled with fb75389. The preceeding changes in 257976d did forget the management command. --- netbox/extras/management/commands/runscript.py | 1 - 1 file changed, 1 deletion(-) diff --git a/netbox/extras/management/commands/runscript.py b/netbox/extras/management/commands/runscript.py index e33ef6ec8..f084e3a45 100644 --- a/netbox/extras/management/commands/runscript.py +++ b/netbox/extras/management/commands/runscript.py @@ -87,7 +87,6 @@ class Command(BaseCommand): ScriptJob = import_string("extras.jobs.ScriptJob") job = ScriptJob.enqueue( instance=script_obj, - name=script.name, user=user, immediate=True, data=data,