Skip to content

Commit

Permalink
Fix Potential Memory Leak in SecurityServerTransportInterceptor elast…
Browse files Browse the repository at this point in the history
…ic#75669 "throws Exception" can't drop
  • Loading branch information
[email protected] committed Aug 23, 2023
1 parent f721628 commit 44a6b8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ public String toString() {
}

@Override
public void messageReceived(T request, TransportChannel channel, Task task) {
public void messageReceived(T request, TransportChannel channel, Task task) throws Exception {
try (ThreadContext.StoredContext ctx = threadContext.newStoredContext(true)) {
if (licenseState.isSecurityEnabled()) {
String profile = channel.getProfileName();
Expand Down

0 comments on commit 44a6b8b

Please sign in to comment.