From 40e2f60a2609c05bdaf5b8d3d3be6b483b6e607b Mon Sep 17 00:00:00 2001 From: wanyaoqi Date: Thu, 21 Sep 2023 11:03:38 +0800 Subject: [PATCH] fix(host): avoid panic on host record not init --- pkg/hostman/hostinfo/hostinfo.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkg/hostman/hostinfo/hostinfo.go b/pkg/hostman/hostinfo/hostinfo.go index d0f1d3b893..44e14e65a9 100644 --- a/pkg/hostman/hostinfo/hostinfo.go +++ b/pkg/hostman/hostinfo/hostinfo.go @@ -1305,16 +1305,16 @@ func (h *SHostInfo) ensureHostRecord(zoneId string) (*api.HostDetails, error) { h.Domain_id = hosts[0].DomainId h.HostId = hosts[0].Id h.Project_domain = strings.ReplaceAll(hosts[0].ProjectDomain, " ", "+") - } - // 上次未能正常offline, 补充一次健康日志 - if hosts[0].HostStatus == api.HOST_ONLINE { - reason := fmt.Sprintf("The host status is online when it staring. Maybe the control center was down earlier") - logclient.AddSimpleActionLog(h, logclient.ACT_HEALTH_CHECK, map[string]string{"reason": reason}, hostutils.GetComputeSession(context.Background()).GetToken(), false) - data := jsonutils.NewDict() - data.Add(jsonutils.NewString(h.GetName()), "name") - data.Add(jsonutils.NewString(reason), "message") - notifyclient.SystemExceptionNotify(context.TODO(), napi.ActionSystemException, napi.TOPIC_RESOURCE_HOST, data) + // 上次未能正常offline, 补充一次健康日志 + if hosts[0].HostStatus == api.HOST_ONLINE { + reason := fmt.Sprintf("The host status is online when it staring. Maybe the control center was down earlier") + logclient.AddSimpleActionLog(h, logclient.ACT_HEALTH_CHECK, map[string]string{"reason": reason}, hostutils.GetComputeSession(context.Background()).GetToken(), false) + data := jsonutils.NewDict() + data.Add(jsonutils.NewString(h.GetName()), "name") + data.Add(jsonutils.NewString(reason), "message") + notifyclient.SystemExceptionNotify(context.TODO(), napi.ActionSystemException, napi.TOPIC_RESOURCE_HOST, data) + } } return h.updateOrCreateHost(h.HostId)