Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 823e89d8 authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

bugfix: continue tasks in cas an error occurs if jobs are not run multithreaded

parent bc32fc8c
No related branches found
No related tags found
No related merge requests found
......@@ -266,7 +266,8 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
foreach (var run in Runs) {
var r = run;
task = task.ContinueWith(t => r.RunWorkerAsync().Wait(),
TaskContinuationOptions.OnlyOnRanToCompletion);
TaskContinuationOptions.NotOnCanceled);
}
first.Start();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment