v0.3.6-pre.003-fix.001

This commit is contained in:
2026-09-01 12:05:28 +02:00
parent f92c22d55a
commit 20cf700f22
5 changed files with 144 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-job-api/src/notification.rs
// version: 1
// version: 2
/// Monotone sequence attached to one latest-value Job notification stream.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
@@ -118,7 +118,7 @@ pub trait JobSnapshotSource: std::marker::Send + std::marker::Sync {
#[cfg(test)]
fn exhausted_notification_sequence() -> crate::JobNotificationSequence {
return crate::JobNotificationSequence(u64::MAX);
return JobNotificationSequence(u64::MAX);
}
#[cfg(test)]