Skip to content

Commit dde2295

Browse files
Runtime properties.
1 parent e49452e commit dde2295

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

taskmaster-cache-ehcache/src/main/java/com/github/bordertech/taskmaster/ehcache/CacheHelperEhCachePropertiesConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ private Integer getIntegerProperty(final String name, final String property) {
116116
* @return the property key
117117
*/
118118
private String getKey(final String name, final String property) {
119-
return "av.cache." + name + "." + property;
119+
return "bordertech.taskmaster.cache." + name + "." + property;
120120
}
121121

122122
/**

taskmaster-core/src/main/java/com/github/bordertech/taskmaster/logical/LogicalThreadPool.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
*/
1616
public class LogicalThreadPool implements Serializable {
1717

18-
private static final int DEFAULT_WAIT_INTERVAL_MILLISECONDS = Config.getInstance().getInt("bordertech.tm.logicalthreadpool.wait.interval", 300);
19-
private static final int DEFAULT_MAX_WAIT_INTERVALS = Config.getInstance().getInt("bordertech.tm.logicalthreadpool.wait.max.intervals", 200);
18+
private static final int DEFAULT_WAIT_INTERVAL_MILLISECONDS = Config.getInstance().getInt("bordertech.taskmaster.logicalthreadpool.wait.interval", 300);
19+
private static final int DEFAULT_MAX_WAIT_INTERVALS = Config.getInstance().getInt("bordertech.taskmaster.logicalthreadpool.wait.max.intervals", 200);
2020

2121
private static final Log LOGGER = LogFactory.getLog(LogicalThreadPool.class);
2222
private final String name;

0 commit comments

Comments
 (0)