We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a34e203 commit 584d875Copy full SHA for 584d875
example_apps/aggregations/src/car.rs
@@ -55,7 +55,7 @@ impl CarLifecycle {
55
56
let speed_handler = context.schedule_repeatedly(Duration::from_secs(5), move || {
57
let mut rng = rand::rngs::OsRng::default();
58
- Some(context.set_value(CarAgent::SPEED, rng.gen_range(10..=30)))
+ Some(context.set_value(CarAgent::SPEED, rng.gen_range(10..=70)))
59
});
60
let car_handler = move |car_id: u64| {
61
context.schedule_repeatedly(Duration::from_secs(1), move || {
0 commit comments