Radish alpha
r
Radicle Job Collaborative Object
Radicle
Git (anonymous pull)
Log in to clone via SSH
fix(src/bin/radicle-job.rs): add missing elided hidden lifetime
✗ CI failure Lars Wirzenius committed 9 months ago
commit 6a23756c2ea6b1d6e23f0778ec81851db6e7df54
parent 127f2e281afcaa12aea60ca491fde01f4b642c71
4 failed (4 total) View logs
1 file changed +1 -1
modified src/bin/rad-job.rs
@@ -88,7 +88,7 @@ fn profile() -> Result<Profile, error::Profile> {
    Profile::load().map_err(error::Profile)
}

-
fn jobs(repo: &Repository) -> Result<Jobs<Repository>, error::Jobs> {
+
fn jobs(repo: &Repository) -> Result<Jobs<'_, Repository>, error::Jobs> {
    Jobs::open(repo).map_err(|err| error::Jobs { rid: repo.id, err })
}