@@ -121,7 +121,6 @@ var exitFunc = os.Exit
121
121
122
122
// Context groups listening context data together
123
123
type Context struct {
124
- watcher chan bool
125
124
status * statusHandler
126
125
statusHTTP * http.Server
127
126
shutdownTimeout time.Duration
@@ -305,12 +304,6 @@ func run(args []string) error {
305
304
}
306
305
metrics := sqmetrics .NewMetrics (* metricsURL , * metricsPrefix , client , * metricsInterval , metrics .DefaultRegistry , logger )
307
306
308
- // Set up file watchers (if requested)
309
- watcher := make (chan bool , 1 )
310
- if * timedReload > 0 {
311
- go watchFiles ([]string {* keystorePath }, * timedReload , watcher )
312
- }
313
-
314
307
cert , err := buildCertificate (* keystorePath , * keystorePass )
315
308
if err != nil {
316
309
fmt .Fprintf (os .Stderr , "error: unable to load certificates: %s\n " , err )
@@ -332,7 +325,8 @@ func run(args []string) error {
332
325
logger .Printf ("using target address %s" , * serverForwardAddress )
333
326
334
327
status := newStatusHandler (dial )
335
- context := & Context {watcher , status , nil , * shutdownTimeout , dial , metrics , cert }
328
+ context := & Context {status , nil , * shutdownTimeout , dial , metrics , cert }
329
+ go context .reloadHandler (* timedReload )
336
330
337
331
// Start listening
338
332
err = serverListen (context )
@@ -361,7 +355,8 @@ func run(args []string) error {
361
355
}
362
356
363
357
status := newStatusHandler (dial )
364
- context := & Context {watcher , status , nil , * shutdownTimeout , dial , metrics , cert }
358
+ context := & Context {status , nil , * shutdownTimeout , dial , metrics , cert }
359
+ go context .reloadHandler (* timedReload )
365
360
366
361
// Start listening
367
362
err = clientListen (context )
0 commit comments