diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-09-16 15:10:09 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-09-16 15:10:09 +0300 |
| commit | e161c0471aa5703882e321b8e6661579dc4e0533 (patch) | |
| tree | 6c0ea156ec9f9949a40ef933e3607782ef8e317f /Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs | |
| parent | 1c74b1f3e6fd3f64936df890de14e162303ee1fb (diff) | |
| download | Tango-e161c0471aa5703882e321b8e6661579dc4e0533.tar.gz Tango-e161c0471aa5703882e321b8e6661579dc4e0533.zip | |
Implemented bug reporting Machine SN & Embedded Version.
Implemented ProcessParameters.DryerBufferLengthMeters.
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs b/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs index ab4237f9c..da8d115a3 100644 --- a/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs +++ b/Software/Visual_Studio/Tango.Integration/Operation/MachineOperator.cs @@ -1064,7 +1064,7 @@ namespace Tango.Integration.Operation if (JobHandlingMode == JobHandlerModes.SettingUp) { - if (response.Message.Status.Progress > jobTicket.ProcessParameters.DryerBufferLength) + if (response.Message.Status.Progress > processParameters.DryerBufferLengthMeters) { if (!completed) { @@ -1785,7 +1785,7 @@ namespace Tango.Integration.Operation if (JobHandlingMode == JobHandlerModes.SettingUp) { - if (response.Message.Status.Progress > request.JobTicket.ProcessParameters.DryerBufferLength) + if (response.Message.Status.Progress > processParameters.DryerBufferLengthMeters) { if (!completed) { |
