File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
src/core/StackExchange.Redis.Extensions.Core Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 4
4
<!-- General information -->
5
5
<PropertyGroup >
6
6
<Authors >Ugo Lattanzi</Authors >
7
- <VersionPrefix >6.2.2 </VersionPrefix >
7
+ <VersionPrefix >6.3.0 </VersionPrefix >
8
8
<!-- <VersionSuffix>pre</VersionSuffix> -->
9
9
<TargetFrameworks >netstandard2.0;net461;net472;netcoreapp3.0;netcoreapp3.1</TargetFrameworks >
10
10
<IncludeSource >True</IncludeSource >
Original file line number Diff line number Diff line change @@ -288,7 +288,6 @@ public ConfigurationOptions ConfigurationOptions
288
288
AbortOnConnectFail = AbortOnConnectFail ,
289
289
ConfigurationChannel = ConfigurationChannel ,
290
290
ChannelPrefix = KeyPrefix ,
291
- ConnectRetry = 0 ,
292
291
} ;
293
292
294
293
if ( IsSentinelCluster )
Original file line number Diff line number Diff line change @@ -412,7 +412,7 @@ public Task FlushDbAsync()
412
412
{
413
413
var server = Database . Multiplexer . GetServer ( endPoints [ i ] ) ;
414
414
415
- if ( ! server . IsSlave )
415
+ if ( ! server . IsReplica )
416
416
tasks . Add ( server . FlushDatabaseAsync ( Database . Database ) ) ;
417
417
}
418
418
Original file line number Diff line number Diff line change 2
2
using System . Collections ;
3
3
using System . Collections . Generic ;
4
4
using System . Net ;
5
+
5
6
using StackExchange . Redis . Extensions . Core . Configuration ;
6
7
7
8
namespace StackExchange . Redis . Extensions . Core . ServerIteration
@@ -41,7 +42,7 @@ public IEnumerator<IServer> GetEnumerator()
41
42
var server = multiplexer . GetServer ( endPoint ) ;
42
43
if ( targetRole == ServerEnumerationStrategy . TargetRoleOptions . PreferSlave )
43
44
{
44
- if ( ! server . IsSlave )
45
+ if ( ! server . IsReplica )
45
46
continue ;
46
47
}
47
48
You can’t perform that action at this time.
0 commit comments