diff --git a/supervisor/supervisor.go b/supervisor/supervisor.go index 1d1ca98..e961eb2 100644 --- a/supervisor/supervisor.go +++ b/supervisor/supervisor.go @@ -168,6 +168,11 @@ func (s *Supervisor) Events(from time.Time) chan Event { } } } + // Notify the client that from now on it's live events + c <- Event{ + Type: "live", + Timestamp: time.Now(), + } return c }