diff options
author | Christian Pointner <equinox@spreadspace.org> | 2016-03-27 19:08:24 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2016-03-27 19:08:24 (GMT) |
commit | 2e2b6ea6a2267fa9c95d3b74c7cb9dd00531a915 (patch) | |
tree | f19514191220dedfeb42e6c6594ca0462454516f /src | |
parent | 2106b1e52d04e89fa053bd731931789ad650e643 (diff) |
add log message when server comes back from the dead
Diffstat (limited to 'src')
-rw-r--r-- | src/rhctl/playout_server.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rhctl/playout_server.go b/src/rhctl/playout_server.go index 7d4b822..96e6fb7 100644 --- a/src/rhctl/playout_server.go +++ b/src/rhctl/playout_server.go @@ -88,6 +88,7 @@ func (srv *PlayoutServer) handleHeartbeat(data string) { srv.status.Health = ServerAlive if old != srv.status.Health { srv.Updates <- srv.status + rhl.Printf("Server(%s): is back from the dead!", srv.name) } } |