automatic cargo CI changes
This commit is contained in:
parent
ef01e4d808
commit
77ced4b277
|
@ -7,7 +7,7 @@
|
||||||
//! This way, we have a distribution api, that clients can use to get any messages they have not
|
//! This way, we have a distribution api, that clients can use to get any messages they have not
|
||||||
//! yet received.
|
//! yet received.
|
||||||
|
|
||||||
use libpt::log::{debug, info};
|
use libpt::log::info;
|
||||||
|
|
||||||
mod routes;
|
mod routes;
|
||||||
use routes::*;
|
use routes::*;
|
||||||
|
|
|
@ -51,10 +51,7 @@ impl Item {
|
||||||
let seq = SEQUENCE.load(std::sync::atomic::Ordering::Relaxed);
|
let seq = SEQUENCE.load(std::sync::atomic::Ordering::Relaxed);
|
||||||
SEQUENCE.store(seq + 1, std::sync::atomic::Ordering::Relaxed);
|
SEQUENCE.store(seq + 1, std::sync::atomic::Ordering::Relaxed);
|
||||||
|
|
||||||
Self {
|
Self { body: msg, seq }
|
||||||
body: msg,
|
|
||||||
seq,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue