Commit 9965604d authored by Eric Paris's avatar Eric Paris

check gofmt with golang 1.4

parent 4c878058
...@@ -24,7 +24,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/.. ...@@ -24,7 +24,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
GO_VERSION=($(go version)) GO_VERSION=($(go version))
if [[ -z $(echo "${GO_VERSION[2]}" | grep -E 'go1.2|go1.3') ]]; then if [[ -z $(echo "${GO_VERSION[2]}" | grep -E 'go1.2|go1.3|go1.4') ]]; then
echo "Unknown go version '${GO_VERSION}', skipping gofmt." echo "Unknown go version '${GO_VERSION}', skipping gofmt."
exit 0 exit 0
fi fi
......
...@@ -262,7 +262,7 @@ func (s *serviceStore) MergedState() interface{} { ...@@ -262,7 +262,7 @@ func (s *serviceStore) MergedState() interface{} {
// watchForUpdates invokes bcaster.Notify() with the latest version of an object // watchForUpdates invokes bcaster.Notify() with the latest version of an object
// when changes occur. // when changes occur.
func watchForUpdates(bcaster *config.Broadcaster, accessor config.Accessor, updates <-chan struct{}) { func watchForUpdates(bcaster *config.Broadcaster, accessor config.Accessor, updates <-chan struct{}) {
for _ = range updates { for range updates {
bcaster.Notify(accessor.MergedState()) bcaster.Notify(accessor.MergedState())
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment