Skip to content

Commit

Permalink
Fix start watcher
Browse files Browse the repository at this point in the history
  • Loading branch information
nekohasekai committed Nov 20, 2024
1 parent af58e3b commit 6be07ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/tls/ech_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion common/tls/std_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 6be07ed

Please sign in to comment.