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
logrus.Warnf("Marking the instance as state ERROR since failed to find the instance status in instance manager %v for the running instance %v", im.Name, instanceName)
125
+
log.Warnf("Marking the instance as state ERROR since failed to find the instance status in instance manager %v for the running instance %v", im.Name, instanceName)
logrus.WithError(err).Errorf("Failed to get instance manager pod from %v", im.Name)
167
+
log.WithError(err).Errorf("Failed to get instance manager pod from %v", im.Name)
168
168
return
169
169
}
170
170
171
171
ifimPod==nil {
172
-
logrus.Warnf("Instance manager pod from %v not exist in datastore", im.Name)
172
+
log.Warnf("Instance manager pod from %v not exist in datastore", im.Name)
173
173
return
174
174
}
175
175
176
176
storageIP:=h.ds.GetStorageIPFromPod(imPod)
177
177
ifstatus.StorageIP!=storageIP {
178
+
log.Warnf("Instance %v is state running in instance manager %s, but its recorded Storage IP %s does not match the instance manager pod Storage IP %s", instanceName, im.Name, status.StorageIP, storageIP)
178
179
status.StorageIP=storageIP
179
-
logrus.Warnf("Instance %v starts running, Storage IP %v", instanceName, status.StorageIP)
180
180
}
181
181
182
182
ifstatus.IP!=im.Status.IP {
183
+
log.Warnf("Instance %v is state running in instance manager %s, but its recorded IP %s does not match the instance manager recorded IP %s", instanceName, im.Name, status.IP, im.Status.IP)
183
184
status.IP=im.Status.IP
184
-
logrus.Warnf("Instance %v starts running, IP %v", instanceName, status.IP)
185
185
}
186
186
ifstatus.Port!=int(instance.Status.PortStart) {
187
+
log.Warnf("Instance %v is state running in instance manager %s, but its recorded Port %d does not match the instance manager recorded Port %d", instanceName, im.Name, status.Port, instance.Status.PortStart)
187
188
status.Port=int(instance.Status.PortStart)
188
-
logrus.Warnf("Instance %v starts running, Port %d", instanceName, status.Port)
0 commit comments