aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Emulations
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Emulations')
-rw-r--r--Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs b/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs
index 7f99c8161..8d1aefe54 100644
--- a/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs
+++ b/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs
@@ -608,7 +608,7 @@ namespace Tango.Emulations.Emulators
Transporter.SendResponse<ResumeCurrentJobResponse>(new ResumeCurrentJobResponse()
{
- }, request.Container.Token, false, ErrorCode.ContinuousResponseAborted);
+ }, _current_job_resume_token, false, ErrorCode.ContinuousResponseAborted);
}
}
else
@@ -633,7 +633,7 @@ namespace Tango.Emulations.Emulators
Progress = job.Length + job.ProcessParameters.DryerBufferLength,
}
- }, request.Container.Token, !_cancelJob);
+ }, _current_job_resume_token, !_cancelJob);
}
}
});