1
0
mirror of https://github.com/beego/bee.git synced 2024-06-15 12:13:31 +00:00
This commit is contained in:
Gero 2017-02-11 16:54:12 -03:00 committed by GitHub
parent 496f162f9b
commit c53a621c52

View File

@ -66,15 +66,9 @@ func NewWatcher(paths []string, files []string, isgenerate bool) {
if isbuild {
logger.Infof("Event fired: %s", e)
go func() {
// Wait 1s before autobuild util there is no file change.
// Wait 1s before autobuild until there is no file change.
scheduleTime = time.Now().Add(1 * time.Second)
for {
time.Sleep(scheduleTime.Sub(time.Now()))
if time.Now().After(scheduleTime) {
break
}
return
}
AutoBuild(files, isgenerate)
if conf.EnableReload {