Fix start watcher

This commit is contained in:
世界
2024-11-20 11:32:53 +08:00
parent af58e3bec0
commit 6be07ed51f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ func (c *echServerConfig) startWatcher() error {
if err != nil {
return err
}
err = c.watcher.Start()
err = watcher.Start()
if err != nil {
return err
}
+1 -1
View File
@@ -106,7 +106,7 @@ func (c *STDServerConfig) startWatcher() error {
if err != nil {
return err
}
err = c.watcher.Start()
err = watcher.Start()
if err != nil {
return err
}