Skip to content
Snippets Groups Projects
Commit f97437ba authored by ale's avatar ale
Browse files

do not reload icecast until the masterelection protocol has reached consensus

parent c2c769ac
No related branches found
No related tags found
No related merge requests found
......@@ -348,6 +348,13 @@ func (rc *RadioNode) updater(stop chan bool) {
for {
select {
case <-rc.upch:
// We may have received an update before the
// masterelection had time to actually elect a
// master. In this case, skip.
if !rc.me.Valid() {
continue
}
icecastReloads.Incr()
rc.Log.Printf("reloading icecast config")
if err := rc.icecast.Update(rc.config, rc.me.IsMaster(), rc.getMasterAddr()); err != nil {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment