This is an automated email from the ASF dual-hosted git repository. dzamo pushed a commit to branch hadoop-impersonation-tests in repository https://gitbox.apache.org/repos/asf/drill.git
commit 93e11f60750f5031270f50e3a215f14b01c1292d Author: James Turton <[email protected]> AuthorDate: Wed Aug 16 12:03:58 2023 +0200 Shut down MiniDFS cluster in TestInboundImpersonation.selectChainedView. --- .../org/apache/drill/exec/impersonation/TestInboundImpersonation.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/exec/java-exec/src/test/java/org/apache/drill/exec/impersonation/TestInboundImpersonation.java b/exec/java-exec/src/test/java/org/apache/drill/exec/impersonation/TestInboundImpersonation.java index 18b1684a93..3a2bc8e907 100644 --- a/exec/java-exec/src/test/java/org/apache/drill/exec/impersonation/TestInboundImpersonation.java +++ b/exec/java-exec/src/test/java/org/apache/drill/exec/impersonation/TestInboundImpersonation.java @@ -92,6 +92,8 @@ public class TestInboundImpersonation extends BaseTestImpersonation { .go(); } adminClient.resetSystem(ExecConstants.IMPERSONATION_POLICIES_KEY); + } finally { + stopMiniDfsCluster(); } }
