Added a JUnit test for JedisSentinelPool.
This test will set up and get a master from a Redis master slave pair being watched by 2 Sentinels. It pings the master, segfaults it, asks the pool for another connection and makes sure it can ping it. This commit also restores the pom.xml file's scm information back to xetorthio and adds the default Sentinel port to the Procotol.
This commit is contained in:
15
pom.xml
15
pom.xml
@@ -13,7 +13,7 @@
|
||||
<version>2.2.2-SNAPSHOT</version>
|
||||
<name>Jedis</name>
|
||||
<description>Jedis is a blazingly small and sane Redis java client.</description>
|
||||
<url>https://github.com/mardambey/jedis</url>
|
||||
<url>https://github.com/xetorthio/jedis</url>
|
||||
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
@@ -28,24 +28,25 @@
|
||||
<licenses>
|
||||
<license>
|
||||
<name>MIT</name>
|
||||
<url>http://github.com/mardambey/jedis/raw/master/LICENSE.txt</url>
|
||||
<url>http://github.com/xetorthio/jedis/raw/master/LICENSE.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<issueManagement>
|
||||
<system>github</system>
|
||||
<url>http://github.com/mardambey/jedis/issues</url>
|
||||
<url>http://github.com/xetorthio/jedis/issues</url>
|
||||
</issueManagement>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:mardambey/jedis.git</connection>
|
||||
<url>scm:git:git@github.com:mardambey/jedis.git</url>
|
||||
<developerConnection>scm:git:git@github.com:mardambey/jedis.git</developerConnection>
|
||||
<connection>scm:git:git@github.com:xetorthio/jedis.git</connection>
|
||||
<url>scm:git:git@github.com:xetorthio/jedis.git</url>
|
||||
<developerConnection>scm:git:git@github.com:xetorthio/jedis.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
<redis-hosts>localhost:6379,localhost:6380</redis-hosts>
|
||||
<redis-hosts>localhost:6379,localhost:6380,localhost:6381,localhost:6382</redis-hosts>
|
||||
<sentinel-hosts>localhost:26379,localhost:26380</sentinel-hosts>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
||||
Reference in New Issue
Block a user