Skip to content
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.

Commit

Permalink
[fix][test] Fix thread leak in TopicPoliciesAuthZTest (apache#22257)
Browse files Browse the repository at this point in the history
  • Loading branch information
lhotari authored Mar 13, 2024
1 parent ffff639 commit ade9c10
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ public void before() {
@SneakyThrows
@AfterClass
public void after() {
if (superUserAdmin != null) {
superUserAdmin.close();
}
if (tenantManagerAdmin != null) {
tenantManagerAdmin.close();
}
close();
}

Expand Down

0 comments on commit ade9c10

Please sign in to comment.