mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-19 08:19:15 +08:00
fix: 解决同步任务状态导致启动失败的问题 (#3268)
This commit is contained in:
parent
a2c16e6a54
commit
e48c224c41
@ -12,7 +12,6 @@ import (
|
|||||||
"github.com/1Panel-dev/1Panel/backend/buserr"
|
"github.com/1Panel-dev/1Panel/backend/buserr"
|
||||||
"github.com/1Panel-dev/1Panel/backend/constant"
|
"github.com/1Panel-dev/1Panel/backend/constant"
|
||||||
"github.com/1Panel-dev/1Panel/backend/global"
|
"github.com/1Panel-dev/1Panel/backend/global"
|
||||||
"github.com/1Panel-dev/1Panel/backend/i18n"
|
|
||||||
cmd2 "github.com/1Panel-dev/1Panel/backend/utils/cmd"
|
cmd2 "github.com/1Panel-dev/1Panel/backend/utils/cmd"
|
||||||
"github.com/1Panel-dev/1Panel/backend/utils/compose"
|
"github.com/1Panel-dev/1Panel/backend/utils/compose"
|
||||||
"github.com/1Panel-dev/1Panel/backend/utils/docker"
|
"github.com/1Panel-dev/1Panel/backend/utils/docker"
|
||||||
@ -576,7 +575,7 @@ func (r *RuntimeService) SyncForRestart() error {
|
|||||||
for _, runtime := range runtimes {
|
for _, runtime := range runtimes {
|
||||||
if runtime.Status == constant.RuntimeBuildIng || runtime.Status == constant.RuntimeReCreating || runtime.Status == constant.RuntimeStarting || runtime.Status == constant.RuntimeCreating {
|
if runtime.Status == constant.RuntimeBuildIng || runtime.Status == constant.RuntimeReCreating || runtime.Status == constant.RuntimeStarting || runtime.Status == constant.RuntimeCreating {
|
||||||
runtime.Status = constant.SystemRestart
|
runtime.Status = constant.SystemRestart
|
||||||
runtime.Message = i18n.GetMsgByKey("SystemRestart")
|
runtime.Message = "System restart causing interrupt"
|
||||||
_ = runtimeRepo.Save(&runtime)
|
_ = runtimeRepo.Save(&runtime)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -495,7 +495,7 @@ func (w WebsiteSSLService) SyncForRestart() error {
|
|||||||
for _, ssl := range sslList {
|
for _, ssl := range sslList {
|
||||||
if ssl.Status == constant.SSLApply {
|
if ssl.Status == constant.SSLApply {
|
||||||
ssl.Status = constant.SystemRestart
|
ssl.Status = constant.SystemRestart
|
||||||
ssl.Message = i18n.GetMsgByKey("SystemRestart")
|
ssl.Message = "System restart causing interrupt"
|
||||||
_ = websiteSSLRepo.Save(&ssl)
|
_ = websiteSSLRepo.Save(&ssl)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user