lifefoundry-scott
lifefoundry-scott
Found the same issue on my side. Below is a temporary workaround, but note you'll also need to patch your version of clearml-agent with the pull request attached to the...
Appreciate the demo! It's definitely possible I misinterpreted the issue as being related to logfire import. Unfortunately setting show_project_link to False does not prevent the issue on my side, but...
> what does `print(1); import logfire; print(2); logfire.configure(); print(3)` do? I've done some further digging and found it was an import of a different library that is triggering something. print(1),...
> are you sure that's not just because importing that library takes time and the project link gets printed in the background thread? This could be the case, I was...
I double-checked, but it's the only time it's called from my code
Sorry, you're right. configure() was being called a second time from an __init__.py file. Now setting `logfire.configure(console=False)` does not print out the project URL, and commenting out `logfire.configure()` raises the...
I ran `threading.enumerate()` before and after the time.sleep() and found which thread has died
Both work for me! I would make use of html reports if they don't require the heavy dependencies for sure. Much appreciated, thanks!