MAPREDUCE-7342. Stop RMService in TestClientRedirect.testRedirect() (#2968)

Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
This commit is contained in:
lzx404243 2021-08-29 19:39:33 -04:00 committed by GitHub
parent 73a0c31370
commit 7b5be74228
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -279,6 +279,14 @@ public class TestClientRedirect {
super(name);
}
@Override
protected void serviceStop() throws Exception {
if (server != null) {
server.stop();
}
super.serviceStop();
}
@Override
protected void serviceInit(Configuration conf) throws Exception {
clientServiceBindAddress = RMADDRESS;