diff options
-rw-r--r-- | src/rhctl/switch_control.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/rhctl/switch_control.go b/src/rhctl/switch_control.go index 200bae7..64da3c4 100644 --- a/src/rhctl/switch_control.go +++ b/src/rhctl/switch_control.go @@ -306,13 +306,10 @@ func (ctrl *SwitchControl) reconcile(requestedServer string) (result bool) { } } else { if s.Channel != swch { - // TODO: during normal operation switching server channels is expected and shouldn't lead to mood nervous?!?!? - ctrl.state.Mood = MoodNervous - rhl.Printf("SwitchCTRL: switch and server channel mismatch: '%s' != '%s' -> now in mood: %s", swch, s.Channel, ctrl.state.Mood) + rhl.Printf("SwitchCTRL: switch and server channel mismatch: '%s' != '%s' -> switching...", swch, s.Channel) if !ctrl.selectServer(ctrl.state.ActiveServer) { ctrl.selectNextValidServer() } - return } } |