diff options
author | Steve Smokowski <ss835w@att.com> | 2020-11-02 15:18:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-11-02 15:18:19 +0000 |
commit | 39f149a33356ea0759d07a65e211dc3ffbab885c (patch) | |
tree | 3c43b8bc2f7d59aaeb8d4c60cb2a4ff7f1d622d6 /common/src/main/java/org | |
parent | d82267f79a4c486fb3ad6d59d93347353bf93e23 (diff) | |
parent | 342703276a0b5e1a031890010dfae5b5a8ab0d66 (diff) |
Merge "Fixed the lock times and populated error variable"
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() { |