Merge branch 'master' of https://github.com/gcasanova/tutorials into gcasanova-master

This commit is contained in:
Zeger Hendrikse 2016-07-08 01:20:12 +02:00
commit 16a9492017

View File

@ -191,10 +191,10 @@ public class JedisTest {
public void givenAPoolConfigurationThenCreateAJedisPool() {
final JedisPoolConfig poolConfig = buildPoolConfig();
try (JedisPool jedisPool = new JedisPool(poolConfig, "localhost");
Jedis jedis = jedisPool.getResource()) {
try (JedisPool jedisPool = new JedisPool(poolConfig, "localhost"); Jedis jedis = jedisPool.getResource()) {
// do simple operation to verify that the Jedis resource is working properly
// do simple operation to verify that the Jedis resource is working
// properly
String key = "key";
String value = "value";