You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2020/11/11 13:32:20 UTC

[tomee-tck] 02/03: Don't set quite yet the security property with TS AuthConfig

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

jlmonteiro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git

commit 6fad10b78adb0a26be64575fc93fc68c330b5ee2
Author: Jean-Louis Monteiro <je...@gmail.com>
AuthorDate: Wed Nov 11 14:31:30 2020 +0100

    Don't set quite yet the security property with TS AuthConfig
---
 src/main/java/org/apache/openejb/cts/DeploymentImpl.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/openejb/cts/DeploymentImpl.java b/src/main/java/org/apache/openejb/cts/DeploymentImpl.java
index 31b1b8e..ff97abe 100644
--- a/src/main/java/org/apache/openejb/cts/DeploymentImpl.java
+++ b/src/main/java/org/apache/openejb/cts/DeploymentImpl.java
@@ -59,7 +59,8 @@ public class DeploymentImpl implements TSDeploymentInterface2 {
         Properties overrides = new Properties();
         String containerJavaHome = System.getProperty("container.java.home");
         String containerJavaVersion = System.getProperty("container.java.version");
-        String containerJavaOpts = System.getProperty("container.java.opts", "-Djava.security.properties=conf/security.properties -Dopenejb.deployer.jndiname=openejb/DeployerBusinessRemote");
+        String containerJavaOpts = System.getProperty("container.java.opts", "-Dopenejb.deployer.jndiname=openejb/DeployerBusinessRemote");
+        // String containerJavaOpts = System.getProperty("container.java.opts", "-Djava.security.properties=conf/security.properties -Dopenejb.deployer.jndiname=openejb/DeployerBusinessRemote");
         if (containerJavaVersion != null) {
             overrides.put("java.version", containerJavaVersion);
         }