Skip to content

Commit fea9b59

Browse files
committed
cosmetic changes
1 parent 5f6f62e commit fea9b59

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

rustecal-samples/pubsub/blob_send/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fn main() {
1919

2020
println!("Sent buffer filled with {}", counter);
2121

22-
std::thread::sleep(std::time::Duration::from_millis(100));
22+
std::thread::sleep(std::time::Duration::from_millis(500));
2323
}
2424

2525
Ecal::finalize();

rustecal-samples/pubsub/hello_send/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@ fn main() {
1212
while Ecal::ok() {
1313
cnt += 1;
1414
let msg = format!("HELLO WORLD FROM RUST ({})", cnt);
15+
1516
let wrapped = StringMessage(msg);
1617
publisher.send(&wrapped);
18+
1719
println!("Sent: {}", wrapped.0);
20+
1821
std::thread::sleep(std::time::Duration::from_millis(500));
1922
}
2023

0 commit comments

Comments
 (0)