You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by sm...@apache.org on 2020/09/21 17:29:27 UTC

[directory-fortress-core] branch jmeter-add-case updated: system.exit on termination

This is an automated email from the ASF dual-hosted git repository.

smckinney pushed a commit to branch jmeter-add-case
in repository https://gitbox.apache.org/repos/asf/directory-fortress-core.git


The following commit(s) were added to refs/heads/jmeter-add-case by this push:
     new 71c55ae  system.exit on termination
71c55ae is described below

commit 71c55aef2241aa0484617d7f1063efe3bcaae313
Author: Shawn McKinney <sm...@symas.com>
AuthorDate: Mon Sep 21 12:29:20 2020 -0500

    system.exit on termination
---
 .../directory/fortress/core/jmeter/SessionPermissions.java       | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/src/test/java/org/apache/directory/fortress/core/jmeter/SessionPermissions.java b/src/test/java/org/apache/directory/fortress/core/jmeter/SessionPermissions.java
index 3b970c6..3d2a888 100644
--- a/src/test/java/org/apache/directory/fortress/core/jmeter/SessionPermissions.java
+++ b/src/test/java/org/apache/directory/fortress/core/jmeter/SessionPermissions.java
@@ -252,11 +252,6 @@ public class SessionPermissions extends AbstractJavaSamplerClient
             LOG.error( error );
             se.printStackTrace();
         }
-/*
-        catch ( InterruptedException ie )
-        {
-            // ignore
-        }
-*/
+        System.exit(0);
     }
-}
\ No newline at end of file
+}