Skip to content

Commit 98af161

Browse files
authored
Fix memory leak (#35)
1 parent 252c416 commit 98af161

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/github/jcustenborder/kafka/connect/redis/RedisSessionFactoryImpl.java

+1
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ public static RedisSessionImpl create(RedisConnectorConfig config) {
178178
@Override
179179
public void close() throws Exception {
180180
this.connection.close();
181+
this.client.shutdown();
181182
}
182183
}
183184
}

0 commit comments

Comments
 (0)