drop data that is missing newly added channel

This commit is contained in:
2021-09-08 11:33:59 +02:00
parent bb9894f187
commit c1b4b7e476

View File

@ -48,6 +48,10 @@ class BSCache:
self.channels.add(name)
self.pt.start()
while self.data is None or name not in self.data:
print("dropping data that is missing new channel:", name)
next(self)