in netbench-orchestrator/src/ssm_utils.rs [161:174]
fn indicate_curr_step_started(assemble_command: &mut Vec<String>, curr_step: &Step) {
// indicate that the current step has started
assemble_command.push(format!(
"cd /home/ec2-user; touch start_{}___",
curr_step.as_str()
));
if let Some(detail) = curr_step.task_detail() {
assemble_command.push(format!(
"cd /home/ec2-user; touch start_{}_{}___",
curr_step.as_str(),
detail
));
}
}