Re: [PR] MINOR: Remove extra synchronized block in SharePartitionManager [kafka]

2024-06-24 Thread via GitHub
omkreddy merged PR #16436: URL: https://github.com/apache/kafka/pull/16436 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail:

[PR] MINOR: Remove extra synchronized block in SharePartitionManager [kafka]

2024-06-24 Thread via GitHub
adixitconfluent opened a new pull request, #16436: URL: https://github.com/apache/kafka/pull/16436 ### About Removed an extra synchronized block encapsulating `cache.remove(key)`. `remove(ShareSessionKey key)` function is already a synchronized method, hence we don't need it. -- This