You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnfmt.Errorf("unable to create client for cluster %s", cluster.ID.String())
872
+
}
873
+
for_, h:=rangeclient.Config().Hosts {
874
+
ni, err:=client.NodeInfo(ctx, h)
875
+
iferr!=nil {
876
+
combinedError=multierr.Append(combinedError, err)
877
+
continue
878
+
}
879
+
ifni.AgentVersion!=smVersion {
880
+
combinedError=multierr.Append(fmt.Errorf("agent version %s on host %s does not match scylla manager version %s", h, ni.AgentVersion, smVersion), combinedError)
0 commit comments