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
What is different about my actual application, is that the code is split into seperate modules and the jobs are submitted by a rocket application via a REST interface, but the job runner sits in the same place as in this one:
jobs
├── Cargo.toml
└── src
├── bin
│ └── job-runner.rs
├── images.rs
└── lib.rs
There is a top-level workspace Cargo.toml one level above, that pulls all the modules together.
I'll try to adjust the repro repo accordingly.
Running
cargo run --release --bin job-runner
I get the following error:Running the
debug
binary, everything works as expected and the job method is executed. Am I holding this wrong?Environment
rustc 1.56.1 (59eed8a2a 2021-11-01)
cargo 1.56.0 (4ed5d137b 2021-10-04)
swirl = { git = "https://github.com/sgrif/swirl.git", branch = "master" }
The text was updated successfully, but these errors were encountered: