Noticed a couple ot typos

This commit is contained in:
James Mintram 2015-10-22 16:25:52 +01:00 committed by spf13
parent 493be7d534
commit 3041a43deb

View file

@ -275,12 +275,12 @@ err := runtime_viper.ReadRemoteConfig()
// unmarshal config
runtime_viper.Unmarshal(&runtime_conf)
// open a goroutine to wath remote changes forever
// open a goroutine to watch remote changes forever
go func(){
for {
time.Sleep(time.Second * 5) // delay after each request
// currenlty, only tested with etcd support
// currently, only tested with etcd support
err := runtime_viper.WatchRemoteConfig()
if err != nil {
log.Errorf("unable to read remote config: %v", err)