We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97e23a2 commit 04a7943Copy full SHA for 04a7943
src/Microsoft.ML.AutoML/Experiment/Experiment.cs
@@ -206,7 +206,7 @@ public IList<TRunDetail> Execute()
206
// iteration results. For some trainers, like FastTree, because training is done in parallel
207
// in can throw multiple OperationCancelledExceptions. This causes them to be returned as an
208
// AggregateException and misses the first catch block. This is to handle that case.
209
- if (e.InnerExceptions.All( exception => exception is OperationCanceledException))
+ if (e.InnerExceptions.All(exception => exception is OperationCanceledException))
210
{
211
_logger.Warning(_operationCancelledMessage, e.Message);
212
return iterationResults;
0 commit comments