diff options
author | Max Benjamin <max.benjamin@att.com> | 2020-11-03 19:34:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-11-03 19:34:10 +0000 |
commit | 331650299b48d34c3c6bf11139319d64a489a1ad (patch) | |
tree | b3aebf8b7ed9d8d1c6a18a46d3a353ca15ba3ba1 /common/src/main/java/org | |
parent | 83ff479029986df8326e3119d3ee31f77209c455 (diff) | |
parent | 9630dd840fac8977329d7ff2dacc96e6db31248d (diff) |
Merge "Added to handle inventory failure errors in bpmn."
Diffstat (limited to 'common/src/main/java/org')
-rw-r--r-- | common/src/main/java/org/onap/so/utils/ExternalTaskServiceUtils.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/common/src/main/java/org/onap/so/utils/ExternalTaskServiceUtils.java b/common/src/main/java/org/onap/so/utils/ExternalTaskServiceUtils.java index c601b88ae5..1a8307e8bc 100644 --- a/common/src/main/java/org/onap/so/utils/ExternalTaskServiceUtils.java +++ b/common/src/main/java/org/onap/so/utils/ExternalTaskServiceUtils.java @@ -64,16 +64,6 @@ public class ExternalTaskServiceUtils { return Integer.parseInt(env.getProperty("workflow.topics.maxClients", "10")); } - public Long getLockDuration() { - Long lockDuration = Long.parseLong(env.getProperty("mso.audit.lock-time", "60000")); - return lockDuration; - } - - public Long getLongLockDuration() { - Long lockDuration = Long.parseLong(env.getProperty("mso.long.lock-time", "600000")); - return lockDuration; - } - @ScheduledLogging @Scheduled(fixedDelay = 30000) public void checkAllClientsActive() { |