Send "live" event only if past events requested
This fixes a bug where the live events are recorded in the events log. Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
This commit is contained in:
parent
c242792f21
commit
e8b602462a
1 changed files with 5 additions and 5 deletions
|
@ -169,12 +169,12 @@ func (s *Supervisor) Events(from time.Time) chan Event {
|
|||
c <- e
|
||||
}
|
||||
}
|
||||
}
|
||||
// Notify the client that from now on it's live events
|
||||
c <- Event{
|
||||
Type: "live",
|
||||
Timestamp: time.Now(),
|
||||
}
|
||||
}
|
||||
return c
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue