File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/EasyCaching.Redis/Configurations Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ public IEnumerable<IServer> GetServerList()
7474 private ConnectionMultiplexer CreateConnectionMultiplexer ( )
7575 {
7676 if ( _options . ConfigurationOptions != null )
77- return ConnectionMultiplexer . Connect ( _options . ConfigurationOptions . ToString ( ) ) ;
77+ return ConnectionMultiplexer . Connect ( _options . ConfigurationOptions ) ;
7878
7979 if ( string . IsNullOrWhiteSpace ( _options . Configuration ) )
8080 {
@@ -95,7 +95,7 @@ private ConnectionMultiplexer CreateConnectionMultiplexer()
9595 configurationOptions . EndPoints . Add ( endpoint . Host , endpoint . Port ) ;
9696 }
9797
98- return ConnectionMultiplexer . Connect ( configurationOptions . ToString ( ) ) ;
98+ return ConnectionMultiplexer . Connect ( configurationOptions ) ;
9999 }
100100 else
101101 {
You can’t perform that action at this time.
0 commit comments