Skip to content

Commit

Permalink
Fix memory leak (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
conwayok authored Jul 7, 2021
1 parent 252c416 commit 98af161
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ public static RedisSessionImpl create(RedisConnectorConfig config) {
@Override
public void close() throws Exception {
this.connection.close();
this.client.shutdown();
}
}
}

0 comments on commit 98af161

Please sign in to comment.