Skip to content

Commit 04a7943

Browse files
Update src/Microsoft.ML.AutoML/Experiment/Experiment.cs
Co-authored-by: Justin Ormont <[email protected]>
1 parent 97e23a2 commit 04a7943

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.ML.AutoML/Experiment/Experiment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ public IList<TRunDetail> Execute()
206206
// iteration results. For some trainers, like FastTree, because training is done in parallel
207207
// in can throw multiple OperationCancelledExceptions. This causes them to be returned as an
208208
// AggregateException and misses the first catch block. This is to handle that case.
209-
if (e.InnerExceptions.All( exception => exception is OperationCanceledException))
209+
if (e.InnerExceptions.All(exception => exception is OperationCanceledException))
210210
{
211211
_logger.Warning(_operationCancelledMessage, e.Message);
212212
return iterationResults;

0 commit comments

Comments
 (0)