1
0
mirror of https://github.com/rancher/rke.git synced 2025-10-22 03:32:19 +00:00

Merge pull request #1872 from Lucaber/fix/cluster-state-log

Fix log output of full-cluster-state configmap name
This commit is contained in:
Sebastiaan van Steenis
2020-03-05 14:56:56 +01:00
committed by GitHub

View File

@@ -86,7 +86,7 @@ func SaveFullStateToKubernetes(ctx context.Context, kubeCluster *Cluster, fullSt
time.Sleep(time.Second * 5) time.Sleep(time.Second * 5)
continue continue
} }
log.Infof(ctx, "[state] Successfully Saved full cluster state to Kubernetes ConfigMap: %s", StateConfigMapName) log.Infof(ctx, "[state] Successfully Saved full cluster state to Kubernetes ConfigMap: %s", FullStateConfigMapName)
timeout <- true timeout <- true
break break
} }