Fixes a panic when fs commands with a job parameter return zero allocations

This commit is contained in:
Ivo Verberk
2016-04-07 20:22:09 +02:00
parent dd706284b1
commit b7bc3aae6f

View File

@@ -1,6 +1,7 @@
package command
import (
"fmt"
"math/rand"
"time"
@@ -29,6 +30,12 @@ func (f *FSCommand) Run(args []string) int {
func getRandomJobAlloc(client *api.Client, jobID string) (string, error) {
var runningAllocs []*api.AllocationListStub
allocs, _, err := client.Jobs().Allocations(jobID, nil)
// Check that the job actually has allocations
if len(allocs) == 0 {
return "", fmt.Errorf("job %q doesn't exist or it has no allocations", jobID)
}
for _, v := range allocs {
if v.ClientStatus == "running" {
runningAllocs = append(runningAllocs, v)