Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,10 @@ private async Task ProcessItem(Assembly assembly)

await UploadAssemblySymbols(assembly).ConfigureAwait(false);
}
catch (OperationCanceledException)
{
// ignore
}
catch (Exception e)
{
Log.Error(e, "Error while trying to extract assembly symbol {Assembly}", assembly);
Expand Down
Loading