mirror of
https://github.com/golang/go
synced 2024-11-22 02:14:40 -07:00
godoc: use correct delay time (bug fix)
R=rsc CC=golang-dev https://golang.org/cl/2201041
This commit is contained in:
parent
b6f294def3
commit
bce8f51b2b
@ -135,7 +135,7 @@ func getPathFilter() func(string) bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// readDirList reads a file containing newline-separated list
|
// readDirList reads a file containing a newline-separated list
|
||||||
// of directory paths and returns the list of paths.
|
// of directory paths and returns the list of paths.
|
||||||
func readDirList(filename string) ([]string, os.Error) {
|
func readDirList(filename string) ([]string, os.Error) {
|
||||||
contents, err := ioutil.ReadFile(filename)
|
contents, err := ioutil.ReadFile(filename)
|
||||||
@ -205,8 +205,11 @@ func initDirTrees() {
|
|||||||
filterDelay.set(*filterMin) // initial filter update delay
|
filterDelay.set(*filterMin) // initial filter update delay
|
||||||
go func() {
|
go func() {
|
||||||
for {
|
for {
|
||||||
|
if *verbose {
|
||||||
|
log.Stderrf("start update of %s", *filter)
|
||||||
|
}
|
||||||
updateFilterFile()
|
updateFilterFile()
|
||||||
delay, _ := syncDelay.get()
|
delay, _ := filterDelay.get()
|
||||||
if *verbose {
|
if *verbose {
|
||||||
log.Stderrf("next filter update in %dmin", delay.(int))
|
log.Stderrf("next filter update in %dmin", delay.(int))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user