Breakpoint when bad 1m history offsets are detected
parent
496ef0a9ac
commit
59483dc8e8
|
@ -126,7 +126,7 @@ class _FeedsBus(Struct):
|
||||||
target: Awaitable,
|
target: Awaitable,
|
||||||
*args,
|
*args,
|
||||||
|
|
||||||
) -> None:
|
) -> trio.CancelScope:
|
||||||
|
|
||||||
async def start_with_cs(
|
async def start_with_cs(
|
||||||
task_status: TaskStatus[
|
task_status: TaskStatus[
|
||||||
|
@ -308,6 +308,11 @@ async def start_backfill(
|
||||||
- pendulum.from_timestamp(times[-2])
|
- pendulum.from_timestamp(times[-2])
|
||||||
).seconds
|
).seconds
|
||||||
|
|
||||||
|
if step_size_s == 60:
|
||||||
|
inow = round(time.time())
|
||||||
|
if (inow - times[-1]) > 60:
|
||||||
|
await tractor.breakpoint()
|
||||||
|
|
||||||
# frame's worth of sample-period-steps, in seconds
|
# frame's worth of sample-period-steps, in seconds
|
||||||
frame_size_s = len(array) * step_size_s
|
frame_size_s = len(array) * step_size_s
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue