You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@oozie.apache.org by "Janos Makai (Jira)" <ji...@apache.org> on 2022/12/01 10:55:00 UTC

[jira] [Created] (OOZIE-3679) Correct maximum wait time between database retry attempts property

Janos Makai created OOZIE-3679:
----------------------------------

             Summary: Correct maximum wait time between database retry attempts property
                 Key: OOZIE-3679
                 URL: https://issues.apache.org/jira/browse/OOZIE-3679
             Project: Oozie
          Issue Type: Bug
            Reporter: Janos Makai
            Assignee: Janos Makai


Based on the oozie-default.xml:
{code:xml}
<property>
    <name>oozie.service.JPAService.retry.maximum-wait-time.ms</name>
    <value>30000</value>
    <description>
          Maximum wait time between database retry attempts.
    </description>
</property>

{code}
it looks like we are missing a "{_}retry{_}" string before the maximum wait time between database retry attempts static string in Oozie's JPAService:
{code:java}
public static final String MAX_WAIT_TIME = CONF_PREFIX + "maximum-wait-time.ms";
{code}
{color:#172b4d}The goal this change is to sync the config names between oozie-default.xml and Oozie but we should also support the old, invalid config name.{color}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)