Skip to content

Commit 6be07ed

Browse files
committed
Fix start watcher
1 parent af58e3b commit 6be07ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common/tls/ech_server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ func (c *echServerConfig) startWatcher() error {
9797
if err != nil {
9898
return err
9999
}
100-
err = c.watcher.Start()
100+
err = watcher.Start()
101101
if err != nil {
102102
return err
103103
}

common/tls/std_server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ func (c *STDServerConfig) startWatcher() error {
106106
if err != nil {
107107
return err
108108
}
109-
err = c.watcher.Start()
109+
err = watcher.Start()
110110
if err != nil {
111111
return err
112112
}

0 commit comments

Comments
 (0)