Honsemiro
Honsemiro
As it turns out, we get the host and port information through the CLUSTER SLOTS command, but ElastiCache is not resetting correctly and disconnecting because host is a domain address....
If you change the host value in lib/cluster/index.ts on line 863 to get the IP value first if there is an IP value, the above infinite loop problem will be...
Here is a sample of the output when calling the CLUSTER SLOTS command in ElastiCache. ``` clustercfg..uusa8q.apn2.cache.amazonaws.com:6379> cluster slots 1) 1) (integer) 0 2) (integer) 8191 3) 1) "-0001-001.dev-nxcmd-atcs-apn2.uusa8q.apn2.cache.amazonaws.com" 2)...
Removing host and port from the tls attribute in the cluster constructor options eliminated the reset infinite loop issue. We need to find the cause of this symptom. ```typescript this._client...
I wonder if "const x = parseFloat(value);" is also unnecessary.
I'm facing the same problem, I'm not getting the 'smessage' event when I register the sSubscribe function.
With a total of 3 Redis servers (ports 6379, 6380, 6381) deployed in a Redis Cluster using Docker Compose, I executed the code below. ```typescript import { Cluster, Redis }...