-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure continuations run with sync task completion (ARCH-98) (#2)
Motivation ---------- There is currently a corner case when continuations are queued by a synchronously completing task where those continuations are never executed. Modifications ------------- When the task completes synchronously queue all remaining continuations on the parent synchronization context. Switch build/tests to .NET 6 and language to C# 10. https://centeredge.atlassian.net/browse/ARCH-98
- Loading branch information
1 parent
d9160bb
commit 6f692d4
Showing
7 changed files
with
225 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Cleanup packages | ||
|
||
on: | ||
schedule: | ||
- cron: '21 0 * * 6' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
clean-pr-packages: | ||
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
|
||
steps: | ||
- uses: actions/delete-package-versions@v2 | ||
with: | ||
package-name: CenterEdge.Async | ||
min-versions-to-keep: 30 | ||
ignore-versions: ^(?!.*ci-pr).*$ |
4 changes: 2 additions & 2 deletions
4
src/CenterEdge.Async.Benchmarks/CenterEdge.Async.Benchmarks.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
src/CenterEdge.Async.UnitTests/CenterEdge.Async.UnitTests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters