X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/499208bc547b8151fcf3a4230fab28720f94b13c..9a615740476541185073f98d8bc6e69e06ecf340:/services/crunch-dispatch-slurm/slurm.go diff --git a/services/crunch-dispatch-slurm/slurm.go b/services/crunch-dispatch-slurm/slurm.go index 782be7d8c4..791f294df1 100644 --- a/services/crunch-dispatch-slurm/slurm.go +++ b/services/crunch-dispatch-slurm/slurm.go @@ -20,13 +20,13 @@ type Slurm interface { Renice(name string, nice int64) error } -type slurmCLI struct{ +type slurmCLI struct { runSemaphore chan bool } func NewSlurmCLI() *slurmCLI { return &slurmCLI{ - runSemaphore: make(chan bool, 3), + runSemaphore: make(chan bool, 3), } }