Browse Source

Enable zmqnotify only on non-proxy.

master
Con Kolivas 5 years ago
parent
commit
ec932cb970
  1. 3
      src/stratifier.c

3
src/stratifier.c

@ -8796,7 +8796,8 @@ void *stratifier(void *arg)
create_pthread(&pth_statsupdate, statsupdate, ckp); create_pthread(&pth_statsupdate, statsupdate, ckp);
mutex_init(&sdata->share_lock); mutex_init(&sdata->share_lock);
create_pthread(&pth_zmqnotify, zmqnotify, ckp); if (!ckp->proxy)
create_pthread(&pth_zmqnotify, zmqnotify, ckp);
ckp->stratifier_ready = true; ckp->stratifier_ready = true;
LOGWARNING("%s stratifier ready", ckp->name); LOGWARNING("%s stratifier ready", ckp->name);

Loading…
Cancel
Save