in awsiotjobs/mender/mender.go [42:48]
func (mj *Job) progress(step string) {
mj.menderState.Step = step // should wrap with a mutex
err := mj.execution.InProgress(awsiotjobs.StatusDetails{"step": step})
if err != nil {
log.Printf("Failed to execute InProgress on the Job, got error: %s", err.Error())
}
}