Browse Source

Fix "Fix reloading of tls.certificate_path, tls.key_path and tls.ech.key_path"

世界 11 months ago
parent
commit
e58b549d0f
2 changed files with 10 additions and 2 deletions
  1. 5 1
      common/tls/ech_server.go
  2. 5 1
      common/tls/std_server.go

+ 5 - 1
common/tls/ech_server.go

@@ -97,8 +97,12 @@ func (c *echServerConfig) startWatcher() error {
 	if err != nil {
 		return err
 	}
+	err = c.watcher.Start()
+	if err != nil {
+		return err
+	}
 	c.watcher = watcher
-	return c.watcher.Start()
+	return nil
 }
 
 func (c *echServerConfig) credentialsUpdated(path string) error {

+ 5 - 1
common/tls/std_server.go

@@ -106,8 +106,12 @@ func (c *STDServerConfig) startWatcher() error {
 	if err != nil {
 		return err
 	}
+	err = c.watcher.Start()
+	if err != nil {
+		return err
+	}
 	c.watcher = watcher
-	return c.watcher.Start()
+	return nil
 }
 
 func (c *STDServerConfig) certificateUpdated(path string) error {