You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following error was obvserved in the phylum-ci docker image...
root@6f5596df19f4:/phylum# phylum parse -t msbuild Foo.csprojthread 'main' panicked at /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/birdcage-0.7.1/src/linux/mod.rs:49:9:`Sandbox::spawn` must be called from a single-threaded processnote: run with `RUST_BACKTRACE=1` environment variable to display a backtrace:exclamation: Error: Could not parse dependency file "Foo.csproj" as "msbuild" typeCaused by: Dependency file parsing failed
This is a surprise for two reason:
This is a lockfile. No generation is required, so sandboxing is not expected. (See the phylum docs)
I thought CLI was a single-threaded process...
The text was updated successfully, but these errors were encountered:
It looks like CLI has been sandboxing all lockfile parsing since 376bc72. We should update the docs to reflect that change.
As for the error, my suspicion is that we are getting this error because birdcage is unable to get an accurate thread count in this environment. We may need an update to birdcage to improve the error message.
The following error was obvserved in the
phylum-ci
docker image...This is a surprise for two reason:
The text was updated successfully, but these errors were encountered: