Fix start stage

This commit is contained in:
世界 2024-11-11 16:04:27 +08:00
parent e3ffffc645
commit 1edb80adcc
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
7 changed files with 67 additions and 54 deletions

View file

@ -14,7 +14,7 @@ func LegacyStart(starter any, stage StartStage) error {
}); isStarter {
return starter.Start()
}
case StartStatePostStart:
case StartStateStarted:
if postStarter, isPostStarter := starter.(interface {
PostStart() error
}); isPostStarter {