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