You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by st...@apache.org on 2021/03/02 13:20:45 UTC

[tomee] 01/04: TOMEE-2972 handle removed configuration

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

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

commit 770cb58103cb4e3aa0a51a46abe99905249fed31
Author: Mark Struberg <st...@apache.org>
AuthorDate: Sat Feb 27 09:35:43 2021 +0100

    TOMEE-2972 handle removed configuration
    
    This configuration was unused for ages and got removed.
---
 .../src/main/java/org/apache/openejb/cdi/ThreadSingletonServiceImpl.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/container/openejb-core/src/main/java/org/apache/openejb/cdi/ThreadSingletonServiceImpl.java b/container/openejb-core/src/main/java/org/apache/openejb/cdi/ThreadSingletonServiceImpl.java
index 0b36344..325da56 100644
--- a/container/openejb-core/src/main/java/org/apache/openejb/cdi/ThreadSingletonServiceImpl.java
+++ b/container/openejb-core/src/main/java/org/apache/openejb/cdi/ThreadSingletonServiceImpl.java
@@ -123,7 +123,6 @@ public class ThreadSingletonServiceImpl implements ThreadSingletonService {
         //from CDI builder
         properties.setProperty(OpenWebBeansConfiguration.INTERCEPTOR_FORCE_NO_CHECKED_EXCEPTIONS, "false");
         properties.setProperty(SecurityService.class.getName(), ManagedSecurityService.class.getName());
-        properties.setProperty(OpenWebBeansConfiguration.CONVERSATION_PERIODIC_DELAY, "1800000");
         properties.setProperty(OpenWebBeansConfiguration.APPLICATION_SUPPORTS_CONVERSATION, "true");
         properties.setProperty(OpenWebBeansConfiguration.IGNORED_INTERFACES, "org.apache.aries.proxy.weaving.WovenProxy");