Revert "use pubsub instead of filenotify to follow json logs"

This reverts commit b1594c59f5e0d1ac898eacde8d91b1ba33c2b626.

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
Brian Goff 2016-02-23 21:07:38 -05:00
parent e901b002ac
commit d932514e7e

View file

@ -56,10 +56,8 @@ func (p *Publisher) SubscribeTopic(topic topicFunc) chan interface{} {
// Evict removes the specified subscriber from receiving any more messages. // Evict removes the specified subscriber from receiving any more messages.
func (p *Publisher) Evict(sub chan interface{}) { func (p *Publisher) Evict(sub chan interface{}) {
p.m.Lock() p.m.Lock()
if _, ok := p.subscribers[sub]; ok { delete(p.subscribers, sub)
delete(p.subscribers, sub) close(sub)
close(sub)
}
p.m.Unlock() p.m.Unlock()
} }