Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove restrictions required by netstandard 1.x but available in 2.0 #3790

Merged
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
a43207d
Enable features that are now in the netstandard2.0 library set (but w…
transmax-open-source May 16, 2019
98680a2
Correct version numbers for Clean target #3668
transmax-open-source May 16, 2019
0e52d7a
Merge branch 'dev' into remove-1x-netcore-restriction
heatonmatthew May 17, 2019
5d6c75b
Merge branch 'dev' into remove-1x-netcore-restriction
Aaronontheweb May 21, 2019
587a396
Merge branch 'dev' into remove-1x-netcore-restriction
Aaronontheweb May 23, 2019
48929a5
Merge branch 'dev' into remove-1x-netcore-restriction
Aaronontheweb Jun 4, 2019
b25daa0
Merge branch 'dev' into remove-1x-netcore-restriction
heatonmatthew Jun 9, 2019
bf43ec0
Merge branch 'dev' into remove-1x-netcore-restriction
Aaronontheweb Jul 16, 2019
8a2abe8
Merge branch 'dev' into remove-1x-netcore-restriction
Arkatufus Apr 1, 2021
23a583e
Post-merge cleanup
Arkatufus Apr 1, 2021
bd0bd38
Merge branch 'dev' into remove-1x-netcore-restriction
Arkatufus Apr 15, 2021
47a8530
csproj and code cleanup
Arkatufus Apr 16, 2021
71e1b68
Fix Akka.Persistence.TCK outdated journal spec, original assumption w…
Arkatufus Apr 16, 2021
72d6823
Avoid hardwiring names, spec name isn't hardwired anymore.
Arkatufus Apr 16, 2021
d0008b1
Merge branch 'dev' into remove-1x-netcore-restriction
Arkatufus Apr 16, 2021
b7c7611
Merge branch 'dev' into remove-1x-netcore-restriction
Aaronontheweb Apr 16, 2021
0740894
Add serialization support to exceptions (at least for those in the Ak…
Arkatufus Apr 16, 2021
f6a5df8
Add support to wrap exceptions in custom fields for ExceptionSupport
Arkatufus Apr 16, 2021
c8c4d0b
Add spec for ExceptionSupport
Arkatufus Apr 16, 2021
5b584c1
Merge branch 'remove-1x-netcore-restriction' of github.com:heatonmatt…
Arkatufus Apr 16, 2021
3dfd0c0
Update APIApproval list
Arkatufus Apr 16, 2021
6422da1
Merge branch 'dev' into remove-1x-netcore-restriction
Arkatufus Apr 19, 2021
c34b2a6
Fix flaky spec
Arkatufus Apr 20, 2021
d0b5302
Merge branch 'dev' into remove-1x-netcore-restriction
Arkatufus Apr 22, 2021
5bb8450
Merge branch 'dev' into remove-1x-netcore-restriction
Arkatufus Apr 30, 2021
e53cc2c
Merge branch 'dev' into remove-1x-netcore-restriction
Aaronontheweb May 3, 2021
6e33872
Merge branch 'dev' into remove-1x-netcore-restriction
Arkatufus May 4, 2021
bd7e10c
Merge branch 'dev' into remove-1x-netcore-restriction
Arkatufus May 5, 2021
68cc15b
Revert "Fix flaky spec"
Arkatufus May 5, 2021
0956e76
Fix flaky tests
Arkatufus May 5, 2021
0a196e0
Merge branch 'dev' into remove-1x-netcore-restriction
Aaronontheweb May 6, 2021
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
1 change: 0 additions & 1 deletion src/core/Akka.Tests/Actor/Dispatch/Bug2640Spec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ public async Task ForkJoinExecutorShouldShutdownUponActorSystemTermination()

threads = ReceiveN(100).Cast<Thread>().GroupBy(x => x.ManagedThreadId)
.ToDictionary(x => x.Key, grouping => grouping.First());
threads.Count.Should().Be(4, "Expected 4 distinct threads in this example");
Aaronontheweb marked this conversation as resolved.
Show resolved Hide resolved

await Sys.Terminate();
AwaitAssert(() =>
Expand Down