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
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)
Copy file name to clipboardExpand all lines: docs/ReleaseNotes.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,13 @@ Current package versions:
8
8
9
9
## Unreleased
10
10
11
+
- (none)
12
+
13
+
## 2.8.47
14
+
11
15
- Add support for new `BITOP` operations in CE 8.2 ([#2900 by atakavci](https://github.com/StackExchange/StackExchange.Redis/pull/2900))
12
16
- Package updates ([#2906 by mgravell](https://github.com/StackExchange/StackExchange.Redis/pull/2906))
17
+
- Docs: added [guidance on async timeouts](https://stackexchange.github.io/StackExchange.Redis/AsyncTimeouts) ([#2910 by mgravell](https://github.com/StackExchange/StackExchange.Redis/pull/2910))
13
18
- Fix handshake error with `CLIENT ID` ([#2909 by mgravell](https://github.com/StackExchange/StackExchange.Redis/pull/2909))
14
19
- Support async cancellation of `SCAN` enumeration ([#2911 by mgravell](https://github.com/StackExchange/StackExchange.Redis/pull/2911))
@@ -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