From 646b028a144d92f78bb354f8b01605d9ad29d4d4 Mon Sep 17 00:00:00 2001 From: bfis Date: Mon, 23 Mar 2020 13:29:30 +0100 Subject: [PATCH] JobQueueCluster: pass security along JobQueueCluster.__init__ needs to pass the security argument to it's super's (SpecCluster) __init__ since it is needed there too. --- dask_jobqueue/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dask_jobqueue/core.py b/dask_jobqueue/core.py index 994bc886..70e87be4 100644 --- a/dask_jobqueue/core.py +++ b/dask_jobqueue/core.py @@ -514,6 +514,7 @@ def __init__( loop=loop, silence_logs=silence_logs, asynchronous=asynchronous, + security=security, name=name, )