Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit fa53953

Browse files
committed
Update nspecs
1 parent e4978d6 commit fa53953

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

NuGet.Signed/ServiceStack.Redis.Signed/servicestack.redis.signed.nuspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
<authors>Service Stack</authors>
88
<owners>Service Stack</owners>
99
<description>
10-
C# Redis Client for the worlds fastest distributed NoSQL datastore. Byte[], String and POCO Typed clients.
11-
Thread-Safe Basic and Pooled client managers included.
10+
C# Redis Client for the worlds fastest distributed NoSQL datastore.
11+
Byte[], String and POCO Typed clients.
12+
Thread-Safe Basic and Pooled client managers included.
1213
</description>
1314
<projectUrl>https://github.com/ServiceStack/ServiceStack.Redis</projectUrl>
1415
<licenseUrl>https://servicestack.net/terms</licenseUrl>

NuGet/ServiceStack.Redis/servicestack.redis.nuspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
<authors>Service Stack</authors>
88
<owners>Service Stack</owners>
99
<description>
10-
C# Redis Client for the worlds fastest distributed NoSQL datastore. Byte[], String and POCO Typed clients.
11-
Thread-Safe Basic and Pooled client managers included.
10+
C# Redis Client for the worlds fastest distributed NoSQL datastore.
11+
Byte[], String and POCO Typed clients.
12+
Thread-Safe Basic and Pooled client managers included.
1213

13-
To revert back to the previous BSD ServiceStack v3, see https://github.com/ServiceStackV3/ServiceStackV3
14+
To revert back to earlier BSD v3, see: servicestack.net/download#v3
1415
</description>
1516
<projectUrl>https://github.com/ServiceStack/ServiceStack.Redis</projectUrl>
1617
<licenseUrl>https://servicestack.net/terms</licenseUrl>

src/.nuget/NuGet.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,8 @@
33
<solution>
44
<add key="disableSourceControlIntegration" value="true" />
55
</solution>
6+
<packageSources>
7+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
8+
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
9+
</packageSources>
610
</configuration>

src/ServiceStack.Redis/RedisNativeClient_Utils.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -505,8 +505,7 @@ protected T SendReceive<T>(byte[][] cmdWithBinaryArgs,
505505
catch (Exception outerEx)
506506
{
507507
var retryableEx = outerEx as RedisRetryableException;
508-
509-
if (outerEx is RedisException && retryableEx == null)
508+
if (retryableEx == null && outerEx is RedisException)
510509
throw;
511510

512511
var ex = retryableEx ?? GetRetryableException(outerEx);

0 commit comments

Comments
 (0)