Skip to content
Snippets Groups Projects
Commit 4cf6f109 authored by Robert Lehmann's avatar Robert Lehmann Committed by Robert Lehmann
Browse files

properly teared down redis connection

parent b0cb4510
No related branches found
No related tags found
No related merge requests found
......@@ -48,6 +48,10 @@ public class RedisClient extends DB {
}
}
public void cleanup() throws DBException {
jedis.disconnect();
}
//XXX jedis.select(int index) to switch to `table`
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment