Skip to content

Commit ee514bf

Browse files
committed
Jedis.close() should call super.close() (#1730)
Because there could be something more happening in BinaryJedis.close()
1 parent fb5c1e7 commit ee514bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/redis/clients/jedis/Jedis.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3636,7 +3636,7 @@ public void close() {
36363636
}
36373637
this.dataSource = null;
36383638
} else {
3639-
client.close();
3639+
super.close();
36403640
}
36413641
}
36423642

0 commit comments

Comments
 (0)