From 6e77aff69adba0ded366a704bdafb601514faf5d Mon Sep 17 00:00:00 2001 From: Bo Maryniuk Date: Mon, 23 Jul 2018 12:24:19 +0200 Subject: [PATCH] Fix local opts from CLI --- salt/thorium/runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/thorium/runner.py b/salt/thorium/runner.py index 0f6b532254..0ac4212a21 100644 --- a/salt/thorium/runner.py +++ b/salt/thorium/runner.py @@ -42,7 +42,7 @@ def cmd( func = name local_opts = {} local_opts.update(__opts__) - local_opts['async'] = True # ensure this will be run async + local_opts['asynchronous'] = True # ensure this will be run asynchronous local_opts.update({ 'fun': func, 'arg': arg,