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

Remove task::block_in_place in transaction importer #1805

Merged
merged 2 commits into from
Jul 16, 2024

Commits on Jul 16, 2024

  1. Use Tokio spawn_blocking instead of block_in_place in transcation…

    … importers
    
    This avoid issues with `block_in_place` such as suspension of code
    running concurrently in the same task (see:
    <https://docs.rs/tokio/latest/tokio/task/fn.block_in_place.html>).
    It also avoid the need of specifying `(flavor = "multi_thread")` for the
    tests.
    Alenar committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    934a060 View commit details
    Browse the repository at this point in the history
  2. Upgrade crates versions

    * Mithril-aggregator from `0.5.41` to `0.5.42`
    * Mithril-signer from `0.2.163` to `0.2.164`
    Alenar committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    252f549 View commit details
    Browse the repository at this point in the history