Skip to content

Commit

Permalink
Merge pull request #57714 from jasonmalinowski/remove-dump-request
Browse files Browse the repository at this point in the history
Don't capture dumps for out-of-sync generator drivers
  • Loading branch information
jasonmalinowski authored Nov 11, 2021
2 parents bbd0654 + edbea66 commit add472b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public TouchAdditionalDocumentAction(AdditionalDocumentState oldState, Additiona
{
return generatorDriver.ReplaceAdditionalText(oldText, newText);
}
catch (ArgumentException ex) when (FatalError.ReportWithDumpAndCatch(ex))
catch (ArgumentException ex) when (FatalError.ReportAndCatch(ex))
{
// For some reason, our generator driver has gotten out of sync; by returning null here we force
// ourselves to create a new driver in FinalizeCompilationAsync. This is the investigation for
Expand Down

0 comments on commit add472b

Please sign in to comment.