GUI plugins #9

Merged
NotAShelf merged 46 commits from notashelf/push-mytsqvppsvxu into main 2026-03-12 16:53:43 +00:00
Showing only changes of commit 4834208f9f - Show all commits

pinakes-core: use checked_sub for Instant arithmetic in pipeline tests

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I785a8e5e521581c78024252fc5baf5616a6a6964
raf 2026-03-11 16:55:10 +03:00
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -1258,7 +1258,8 @@ mod tests {
Instant::now()
.checked_sub(CIRCUIT_BREAKER_COOLDOWN)
.unwrap()
- Duration::from_secs(1),
.checked_sub(Duration::from_secs(1))
.unwrap(),
);
}
@ -1277,7 +1278,8 @@ mod tests {
Instant::now()
.checked_sub(CIRCUIT_BREAKER_COOLDOWN)
.unwrap()
- Duration::from_secs(1),
.checked_sub(Duration::from_secs(1))
.unwrap(),
);
}
assert!(pipeline.is_healthy(plugin_id).await);