Skip to content

Commit 0f8c68c

Browse files
author
Thomas Darimont
committed
DATAREDIS-282 - PubSubResubscribeTests should use jedis without pool.
Disabled jedis pooling in PubSubResubscribeTests since all the other tests also don't use a pool. Original pull request #43.
1 parent 1881e62 commit 0f8c68c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/src/info/changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Changes in version 1.2.0.GA (2014-03-03)
99
----------------------------------------
1010
Task
1111
[DATAREDIS-279] - Update reference documentation.
12+
[DATAREDIS-282] - PubSubResubscribeTests should use jedis without pool.
1213

1314

1415
Changes in version 1.2.0.RC1 (2014-02-19)

src/test/java/org/springframework/data/redis/listener/PubSubResubscribeTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public static Collection<Object[]> testParams() {
9898

9999
// Jedis
100100
JedisConnectionFactory jedisConnFactory = new JedisConnectionFactory();
101-
jedisConnFactory.setUsePool(true);
101+
jedisConnFactory.setUsePool(false);
102102
jedisConnFactory.setPort(port);
103103
jedisConnFactory.setHostName(host);
104104
jedisConnFactory.setDatabase(2);

0 commit comments

Comments
 (0)