We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b45a789 commit bb569faCopy full SHA for bb569fa
LibreNMS/queuemanager.py
@@ -362,11 +362,11 @@ def do_dispatch(self):
362
def do_work(self, run_type, group):
363
if run_type == "poll":
364
logger.info("Polling billing")
365
- args = ("-d", "-f") if self.config.debug else ("-f")
+ args = ("-d", "-f") if self.config.debug else ("-f",)
366
exit_code, output = LibreNMS.call_script("poll-billing.php", args)
367
else: # run_type == 'calculate'
368
logger.info("Calculating billing")
369
370
exit_code, output = LibreNMS.call_script("billing-calculate.php", args)
371
372
if exit_code != 0:
0 commit comments