Skip to content

Commit b41d2be

Browse files
committed
[executor] Make "cannot query task status" an Info message, not Error
1 parent 97b1ce3 commit b41d2be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

executor/executor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ func launch(state *internalState, task mesos.TaskInfo) {
490490
state.mu.RLock()
491491
response, err := state.rpcClients[task.TaskID].GetState(context.TODO(), &pb.GetStateRequest{}, grpc.EmptyCallOption{})
492492
if err != nil {
493-
log.WithError(err).WithField("task", task.Name).Error("cannot query task status")
493+
log.WithError(err).WithField("task", task.Name).Info("cannot query task status")
494494
} else {
495495
log.WithField("state", response.GetState()).WithField("task", task.Name).Debug("task status queried")
496496
}

0 commit comments

Comments
 (0)