oauth2_proxy/watcher_unsupported.go
Mike Bland c3590b5c4c Fix validator_test hang on Solaris, Plan 9
On these platforms, the `done <- true` statement in during TearDown() was
hanging, since the `watcher_unsupported.go` version was never draining the
channel. Also took the opportunity to update the WatchForUpdates() signature
to not return bool anymore.
2015-05-30 22:11:02 -04:00

13 lines
226 B
Go

// +build !go1.3 plan9 solaris
package main
import (
"log"
)
func WatchForUpdates(filename string, done <-chan bool, action func()) {
log.Printf("file watching not implemented on this platform")
go func() { <-done }()
}