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 experimental parts of tracing-error #547

Merged
merged 12 commits into from
Jan 29, 2020

Commits on Jan 28, 2020

  1. readme: quick typo fix (tokio-rs#546)

    Fixes a small typo that inverts the intended meaning.
    khionu authored and yaahc committed Jan 28, 2020
    Configuration menu
    Copy the full SHA
    9b07cb3 View commit details
    Browse the repository at this point in the history
  2. subscriber: fix Layered layers not downcasting to themselves (tokio…

    …-rs#549)
    
    Currently, a `Layered` struct's implementations of `Subscriber` and
    `Layer` will successfully downcast to either the the `Layer` type or the
    inner type, but *not* to `Layered<Layer, Inner>`. This means that when a
    `Layer` tries to downcast the wrapped subscriber to a known type, and it
    is a `Layered` (so, any time more than one layer wraps a subscriber and
    a layer other than the first one tries to downcast to the inner type it
    wraps), the downcast will fail incorrectly.
    
    This commit fixes the issue by checking if the downcast target `TypeId`
    equals the `Layered` type's `TypeId`, _before_ trying to downcast to the
    layer itself or to the inner type.
    
    Signed-off-by: Eliza Weisman <[email protected]>
    hawkw authored and yaahc committed Jan 28, 2020
    Configuration menu
    Copy the full SHA
    c98c69b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    20ede80 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fbb1b50 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    564d5b2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d10beae View commit details
    Browse the repository at this point in the history
  7. Break eliza's code some more

    yaahc committed Jan 28, 2020
    Configuration menu
    Copy the full SHA
    9b33c73 View commit details
    Browse the repository at this point in the history
  8. Broken presents for eliza

    yaahc committed Jan 28, 2020
    Configuration menu
    Copy the full SHA
    b15a116 View commit details
    Browse the repository at this point in the history
  9. Fix unused result

    yaahc committed Jan 28, 2020
    Configuration menu
    Copy the full SHA
    495fd84 View commit details
    Browse the repository at this point in the history
  10. Fix last clippy warn

    yaahc committed Jan 28, 2020
    Configuration menu
    Copy the full SHA
    455c524 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    3989f24 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2020

  1. Configuration menu
    Copy the full SHA
    fd49982 View commit details
    Browse the repository at this point in the history