You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* [Tests] Upgrade to xunit v3
Upgrading xunit to v3 to see if this helps our stability issues any.
* More async and stabilization
* Don't install .NET 6 + 7 anymore on AppVeyor
* Fix CodeQL for latest C#
* Explicit .NET 9 install
* Revert TestAutomaticHeartbeat approach for now
* More IAsyncDisposable
* IAsyncDisposable for NoConnectionException
* Fix shared on aborted connection
* Merge latest in
* Tweak DisconnectAndReconnectThrowsConnectionExceptionSync
* Buffer on abort tests
* Saveeeeeee
* Fix sharing, method overlaps, source info + parallelism
* Add console runner
* Prevent cluster tests running first from hosing the default connection
* More stability
* Run only net8.0 tests on AppVeyor
* Cleanup + stability
* Try speeding up Sentinel
* More key conflict cleanup
* More optimization + stability
* Idle test stability with split for time
* Cleanup + more stability/perf
* ClusterNodeSubscriptionFailover
* More stability fixes
* Cleanup
Copy file name to clipboardExpand all lines: .github/workflows/codeql.yml
+8-10Lines changed: 8 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -29,13 +29,18 @@ jobs:
29
29
30
30
steps:
31
31
- name: Checkout repository
32
-
uses: actions/checkout@v3
32
+
uses: actions/checkout@v4
33
33
with:
34
34
fetch-depth: 0
35
35
36
+
- name: Setup .NET
37
+
uses: actions/setup-dotnet@v4
38
+
with:
39
+
dotnet-version: '9.0.x'
40
+
36
41
# Initializes the CodeQL tools for scanning.
37
42
- name: Initialize CodeQL
38
-
uses: github/codeql-action/init@v2
43
+
uses: github/codeql-action/init@v3
39
44
with:
40
45
languages: ${{ matrix.language }}
41
46
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -45,18 +50,11 @@ jobs:
45
50
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
46
51
# queries: security-extended,security-and-quality
47
52
48
-
49
-
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
50
-
# If this step fails, then you should remove it and run the build manually (see below)
@@ -54,7 +51,7 @@ public void DisconnectAndReconnectThrowsConnectionExceptionSync()
54
51
varex=Assert.ThrowsAny<Exception>(()=>db.Ping());
55
52
Log("Exception: "+ex.Message);
56
53
Assert.True(exisRedisConnectionException or RedisTimeoutException);
57
-
Assert.StartsWith("The message timed out in the backlog attempting to send because no connection became available (400ms) - Last Connection Exception: ",ex.Message);
54
+
Assert.StartsWith("The message timed out in the backlog attempting to send because no connection became available (1000ms) - Last Connection Exception: ",ex.Message);
Assert.StartsWith("The message timed out in the backlog attempting to send because no connection became available (400ms) - Last Connection Exception: ",ex.Message);
77
+
Assert.StartsWith("The message timed out in the backlog attempting to send because no connection became available (1000ms) - Last Connection Exception: ",ex.Message);
0 commit comments