You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by st...@apache.org on 2019/12/14 08:14:57 UTC

[openwebbeans] branch master updated: OWB-1307 remove org.apache.webbeans.conversation.Conversation.periodicDelay

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/openwebbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new 15dd023  OWB-1307 remove org.apache.webbeans.conversation.Conversation.periodicDelay
15dd023 is described below

commit 15dd0233b691d93c78adddcfbf3b6d5e70ca214c
Author: Mark Struberg <st...@apache.org>
AuthorDate: Sat Dec 14 09:08:46 2019 +0100

    OWB-1307 remove org.apache.webbeans.conversation.Conversation.periodicDelay
    
    This config option is no longer used since 1.1.x when we moved off storing
    conversations in memory and only serialising over on demand.
    Since 1.2.0 we keep the conversation in the session, so we don't need it.
---
 readme/README.txt                                                    | 5 -----
 .../java/org/apache/webbeans/config/OpenWebBeansConfiguration.java   | 5 -----
 2 files changed, 10 deletions(-)

diff --git a/readme/README.txt b/readme/README.txt
index dbb25a0..a9897e3 100644
--- a/readme/README.txt
+++ b/readme/README.txt
@@ -1534,11 +1534,6 @@ Configuration Names and Their Default Values :
    Values        : Server specific JNDI name
    Default       : ConnectionFactory
 
-- "org.apache.webbeans.conversation.Conversation.periodicDelay"
-   Description   : Conversation removing thread periodic delay
-   Values        : Configured in millisecond
-   Default       : 150000 ms
-
 - "org.apache.webbeans.spi.deployer.useEjbMetaDataDiscoveryService"
    Description   : Use EJB functionality or not. If use OpenEJB configures to true
    Values        : false, true
diff --git a/webbeans-impl/src/main/java/org/apache/webbeans/config/OpenWebBeansConfiguration.java b/webbeans-impl/src/main/java/org/apache/webbeans/config/OpenWebBeansConfiguration.java
index b2b75b9..7eab234 100644
--- a/webbeans-impl/src/main/java/org/apache/webbeans/config/OpenWebBeansConfiguration.java
+++ b/webbeans-impl/src/main/java/org/apache/webbeans/config/OpenWebBeansConfiguration.java
@@ -54,11 +54,6 @@ public class OpenWebBeansConfiguration
     /**Logger instance*/
     private static final Logger logger = WebBeansLoggerFacade.getLogger(OpenWebBeansConfiguration.class);
 
-    /**
-     * Conversation periodic delay in ms. This is not used by OWB out of the box.
-     * Some Containers might implement it though.
-     */
-    public static final String CONVERSATION_PERIODIC_DELAY = "org.apache.webbeans.conversation.Conversation.periodicDelay";
 
     /**Timeout interval in ms*/
     public static final String CONVERSATION_TIMEOUT_INTERVAL = "org.apache.webbeans.conversation.Conversation.timeoutInterval";