You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is_any_outdated() uses an internal timer which advance_domain() changes.
If we probe a Dataflow that has not started or has no current inputs we might run into an infinite loop in the server at : worker.step_while(|| server.is_any_outdated());
because we already advanced the inputs but the probe still only sees the "old" timestamps.
The text was updated successfully, but these errors were encountered:
is_any_outdated()
uses an internal timer whichadvance_domain()
changes.If we probe a Dataflow that has not started or has no current inputs we might run into an infinite loop in the server at :
worker.step_while(|| server.is_any_outdated());
because we already advanced the inputs but the probe still only sees the "old" timestamps.
The text was updated successfully, but these errors were encountered: