diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-08-10 12:21:34 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-08-10 12:21:34 +0300 |
| commit | ba0fa1fa68767b7264803019ade99f5e123a5d1a (patch) | |
| tree | fdfeee6b0e707bb639c30deae15971775490216e /Software/Visual_Studio/PPC/Modules | |
| parent | cea6dbf4dedf06ba95db5e1b6bb63f207de32a41 (diff) | |
| download | Tango-ba0fa1fa68767b7264803019ade99f5e123a5d1a.tar.gz Tango-ba0fa1fa68767b7264803019ade99f5e123a5d1a.zip | |
ResumeJob. Bug in Emulator, - the job does not complete properly.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules')
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobViewVM.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobViewVM.cs index 5738fe8a0..c874e5fc2 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobViewVM.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobViewVM.cs @@ -1805,7 +1805,7 @@ namespace Tango.PPC.Jobs.ViewModels { if (!e.JobHandler.Status.IsCompleted) { - if (e.JobHandler.JobStatus.Progress <= 0) return; + if (e.JobHandler.JobStatus.Progress <= e.JobHandler.ProcessParameters.DryerBufferLengthMeters) return; var model = JobResumeDB.Default.Get(e.Job.Guid); bool insert = false; |
