Skip to content

Commit

Permalink
GCM 2.3.2 (#1380)
Browse files Browse the repository at this point in the history
**Changes:**

- Catch unhandled Trace2 exception when writing to a file (#1378)
  • Loading branch information
mjcheetham committed Aug 16, 2023
2 parents 8064e2e + 0e54a3e commit f0a172a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Expand Up @@ -749,6 +749,7 @@ jobs:
...releaseMetadata,
draft: true,
tag_name: tagName,
tag_commitish: context.sha,
name: `GCM ${version}`
});
releaseMetadata.release_id = createdRelease.data.id;
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.3.1.0
2.3.2.0
5 changes: 5 additions & 0 deletions src/shared/Core/Trace2FileWriter.cs
Expand Up @@ -31,5 +31,10 @@ public override void Write(Trace2Message message)
// Windows and the file is currently open for writing
// by another process (likely Git itself.)
}
catch (IOException)
{
// Do nothing, as this likely means that the file is currently
// open by another process (on Windows).
}
}
}

0 comments on commit f0a172a

Please sign in to comment.