We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af96288 commit 7b062d4Copy full SHA for 7b062d4
1 file changed
feature_integration_tests/test_scenarios/rust/src/scenarios/lifecycle/launch_manager_support.rs
@@ -126,15 +126,15 @@ impl Scenario for DependencyOrdering {
126
test_input.checkpoint_count
127
);
128
129
- // Demonstrate sequential API usage
+ // Demonstrate sequential checkpoint progression (simulation only).
130
for i in 0..test_input.checkpoint_count {
131
- info!("Reported checkpoint init_step_{} in sequence", i);
+ info!("Simulated checkpoint init_step_{} in sequence", i);
132
thread::sleep(Duration::from_millis(
133
test_input.test_duration_ms / test_input.checkpoint_count as u64,
134
));
135
}
136
137
- info!("All checkpoints reported in correct sequential order");
+ info!("All checkpoints simulated in correct sequential order");
138
139
Ok(())
140
0 commit comments