diff --git a/server/api/cluster/operation/download_binaries.go b/server/api/cluster/operation/download_binaries.go index 85c9d034..e6c20921 100644 --- a/server/api/cluster/operation/download_binaries.go +++ b/server/api/cluster/operation/download_binaries.go @@ -39,7 +39,7 @@ func DownloadBinaries(c *gin.Context) { failedNodes := "" for _, nodeStatus := range status.NodeStatus { logrus.Trace(nodeStatus) - if nodeStatus.Changed != "0" && nodeStatus.Unreachable == "0" && nodeStatus.Failed == "0" { + if nodeStatus.OK != "0" && nodeStatus.Unreachable == "0" && nodeStatus.Failed == "0" { common.MapDelete(clusterMetadata.Inventory, "all.hosts."+nodeStatus.NodeName+".kuboardspray_require_download") count++ nodes += nodeStatus.NodeName + ","