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: reentrant tokio runtime when using Resolver #142

Merged
merged 3 commits into from
Aug 14, 2023

Commits on Aug 14, 2023

  1. fix: reentrant tokio runtime when using Resolver

    `trust_dns_resolver` is implemented using async Rust and the tokio
    runtime. Its blocking API is creating a new tokio runtime internally,
    this is a problem because tokio does not allow starting a runtime from
    within another runtime (panic).
    CBenoit committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    087ab85 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2e7acfd View commit details
    Browse the repository at this point in the history
  3. Fix OSX build

    CBenoit committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    f8e9cdc View commit details
    Browse the repository at this point in the history