Skip to content

Commit

Permalink
CLN remove config_name from cluster classes. (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
lesteve committed May 4, 2020
1 parent e5177cc commit 2fd1f9f
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion dask_jobqueue/htcondor.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,4 +236,3 @@ class HTCondorCluster(JobQueueCluster):
job=job_parameters, cluster=cluster_parameters
)
job_cls = HTCondorJob
config_name = "htcondor"
1 change: 0 additions & 1 deletion dask_jobqueue/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,3 @@ class LocalCluster(JobQueueCluster):
job=job_parameters, cluster=cluster_parameters
)
job_cls = LocalJob
config_name = "local"
1 change: 0 additions & 1 deletion dask_jobqueue/lsf.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ class LSFCluster(JobQueueCluster):
job=job_parameters, cluster=cluster_parameters
)
job_cls = LSFJob
config_name = "lsf"


@toolz.memoize
Expand Down
1 change: 0 additions & 1 deletion dask_jobqueue/oar.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,3 @@ class OARCluster(JobQueueCluster):
job=job_parameters, cluster=cluster_parameters
)
job_cls = OARJob
config_name = "oar"
1 change: 0 additions & 1 deletion dask_jobqueue/pbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,3 @@ class PBSCluster(JobQueueCluster):
job=job_parameters, cluster=cluster_parameters
)
job_cls = PBSJob
config_name = "pbs"
1 change: 0 additions & 1 deletion dask_jobqueue/slurm.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,3 @@ class SLURMCluster(JobQueueCluster):
job=job_parameters, cluster=cluster_parameters
)
job_cls = SLURMJob
config_name = "slurm"

0 comments on commit 2fd1f9f

Please sign in to comment.