X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e780e337d170036a69879debeb347a9c26a81518..59a972c831bc8f7cd4e896ed8e1c71277b97f04e:/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), } }