Merge pull request 'develop' (#7) from develop into master
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

Reviewed-on: #7
This commit is contained in:
Jay 2021-07-07 16:22:23 +00:00
commit f3e1b37b2d
1 changed files with 10 additions and 3 deletions

View File

@ -54,10 +54,17 @@ func main() {
// channel closed
return
}
if event.Op&fsnotify.Write == fsnotify.Write {
// 改成有變動就reload
if event.Op&fsnotify.Write == fsnotify.Write || event.Op&fsnotify.Chmod == fsnotify.Chmod {
// send reload channel
reloadChan <- struct{}{}
}
if event.Op&fsnotify.Remove == fsnotify.Remove {
watcher.Remove(cfgPath)
if err := watcher.Add(cfgPath); err != nil {
log.Fatal(err)
}
}
case err, ok := <-watcher.Errors:
if !ok {
// channel closed
@ -113,8 +120,8 @@ func runService(reload <-chan struct{}) {
}
return
}
if time.Since(lastReload).Seconds() < float64(2*time.Second) {
break
if time.Since(lastReload).Seconds() < (2 * time.Second).Seconds() {
continue
}
lastReload = time.Now()