Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(fix) - Fix timing for out-of-band client.reexecuteOperation calls #860

Merged
merged 2 commits into from
Jun 12, 2020

Commits on Jun 12, 2020

  1. Fix timing for out-of-band client.reexecuteOperation calls

    When an operation becomes asynchronous, by matter of an exchange
    delaying it, while it also calls client.reexecuteOpoeration, we
    were calling client.reexecuteOperation out-of-band, which causes
    the reexecuted operation to be dispatched immediately.
    We can't detect the intent of the exchange, and don't know that it
    may afterwards immediately send a result synchronously after the delay,
    but we do know that once an operation becomes asynchronous, the timing
    of client.reexecuteOperation is not sensitive anymore. So instead we
    now choose to defer it by a tick.
    kitten committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    f1ca0af View commit details
    Browse the repository at this point in the history
  2. Add Changeset

    kitten committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    0697baf View commit details
    Browse the repository at this point in the history