GithubHelp home page GithubHelp logo

Comments (8)

mrcnski avatar mrcnski commented on May 27, 2024 1

I think maybe it happened when an instance of the process crashed and I ran it again. Anyway, if you can't reproduce then feel free to close the issue. πŸ‘πŸ»

from console.

hds avatar hds commented on May 27, 2024 1

@zoechi For integration tests (or any tests that use tracing subscribers), you need to use set_default to set a thread local subscriber.

This is because cargo runs each test from a single integration test file in its own thread, but in the same executable and if each test tries to set a global subscriber they will clash (and panic as you saw).

It sounds like you're also spawning your own threads in your tests, in that case you need to set up a separate subscriber in each thread you create.

(this situation is a bit different from the original issue)

from console.

hds avatar hds commented on May 27, 2024

@mrcnski Thanks for your error report.

I couldn't reproduce this error with the following minimal project. Could you see if you can modify it to produce the error you see in polkadot?

Cargo.toml:

[package]
name = "console-eyre"
version = "0.1.0"
edition = "2021"

[dependencies]
color-eyre = "0.6.2"
console-subscriber = "0.2.0"
eyre = "0.6.11"

src/main.rs:

fn main() -> eyre::Result<()> {
    console_subscriber::init();
    color_eyre::install()?;

    println!("Hello, world!");

    Ok(())
}

I ran it with:

RUSTFLAGS="--cfg tokio_unstable" cargo run --release

from console.

hds avatar hds commented on May 27, 2024

Closing this as can't repro at request of original author @mrcnski.

from console.

zoechi avatar zoechi commented on May 27, 2024

I just run into this error when I run more than one integration test that invokes production code calling

tracing::subscriber::set_global_default(subscriber);

It was kinda hard to find because the code runs in a thread and the error was masked by another error just before join_handle.join()

from console.

zoechi avatar zoechi commented on May 27, 2024

Thanks for the infoπŸš€

from console.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.