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
In the function connectToLink the link that has to be parsed is in the form :@
When the client (fastRedis or normal client) is created the string @ is used as port and the connection fail.
The solution is changing the first line of code in the function with this two rows:
var ss = str.split('@');
var spl = ss[0].split(':');
The text was updated successfully, but these errors were encountered:
Another suggestion is to change the line var link = ( flags === 'myself' || flags === 'myself,master || ...
with the line: var link = items[1].
This is useful if the the cluster has a balanced virtual ip
In the function connectToLink the link that has to be parsed is in the form :@
When the client (fastRedis or normal client) is created the string @ is used as port and the connection fail.
The solution is changing the first line of code in the function with this two rows:
var ss = str.split('@');
var spl = ss[0].split(':');
The text was updated successfully, but these errors were encountered: