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
When i try to setup a JedisPool with:
JedisPool pool = new JedisPool("localhost", Protocol.DEFAULT_PORT);
the pool will fail to create connection. At least i have to set the port:
JedisPool pool = new JedisPool("localhost", Protocol.DEFAULT_PORT);
So my guess is that the function JedisPool(String host) is not setting the default port.
The text was updated successfully, but these errors were encountered:
When i try to setup a JedisPool with:
JedisPool pool = new JedisPool("localhost", Protocol.DEFAULT_PORT);
the pool will fail to create connection. At least i have to set the port:
JedisPool pool = new JedisPool("localhost", Protocol.DEFAULT_PORT);
So my guess is that the function JedisPool(String host) is not setting the default port.
The text was updated successfully, but these errors were encountered: