diff --git a/nomad/client_csi_endpoint.go b/nomad/client_csi_endpoint.go index 4bb5a7ad9..eb0a4262a 100644 --- a/nomad/client_csi_endpoint.go +++ b/nomad/client_csi_endpoint.go @@ -134,6 +134,9 @@ func (a *ClientCSI) nodeForController(pluginID, nodeID string) (string, error) { _, err = getNodeForRpc(snap, nodeID) if err == nil { return nodeID, nil + } else { + // we'll fall-through and select a node at random + a.logger.Trace("%s could not be used for client RPC: %v", nodeID, err) } }