Fix fakeip not started (2)

This commit is contained in:
世界 2025-02-05 09:03:08 +08:00
parent e5bc72f8ed
commit f4bab7ee92
No known key found for this signature in database
GPG Key ID: CD109927C34A63C4

View File

@ -36,7 +36,10 @@ func NewTransport(ctx context.Context, logger log.ContextLogger, tag string, opt
}, nil
}
func (t *Transport) Start() error {
func (t *Transport) Start(stage adapter.StartStage) error {
if stage != adapter.StartStateStart {
return nil
}
return t.store.Start()
}