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