Skip to content
Snippets Groups Projects
Commit 37128532 authored by Erik Reid's avatar Erik Reid
Browse files

dont wait for tasks to complete, return ids

parent b58d05cf
No related branches found
No related tags found
No related merge requests found
...@@ -481,8 +481,6 @@ def launch_refresh_cache_all(config): ...@@ -481,8 +481,6 @@ def launch_refresh_cache_all(config):
'queueing router refresh jobs for %r' % hostname) 'queueing router refresh jobs for %r' % hostname)
subtasks.append(reload_router_config.apply_async(args=[hostname])) subtasks.append(reload_router_config.apply_async(args=[hostname]))
[x.get() for x in subtasks]
return [x.id for x in subtasks] return [x.id for x in subtasks]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment