Revert "IDEMPIERE-3551: set AUTOMATIC_PACKIN_FOLDERS by system properties to override configuration on database"
This reverts commit a1f1b609af
.
This commit is contained in:
parent
f156a01676
commit
6fb899bef2
|
@ -342,17 +342,13 @@ public class PackInApplicationActivator extends AbstractActivator{
|
|||
@Override
|
||||
protected void frameworkStarted() {
|
||||
if (service != null) {
|
||||
String packinFolders = System.getProperty(MSysConfig.AUTOMATIC_PACKIN_FOLDERS);
|
||||
if (packinFolders == null || packinFolders.trim().length() == 0) {
|
||||
packinFolders = MSysConfig.getValue(MSysConfig.AUTOMATIC_PACKIN_FOLDERS);
|
||||
}
|
||||
final String fPackinFolders = packinFolders;
|
||||
if (Adempiere.getThreadPoolExecutor() != null) {
|
||||
Adempiere.getThreadPoolExecutor().execute(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
int timeout = MSysConfig.getIntValue(MSysConfig.AUTOMATIC_PACKIN_INITIAL_DELAY, 120) * 1000;
|
||||
automaticPackin(timeout, fPackinFolders, true);
|
||||
String folders = MSysConfig.getValue(MSysConfig.AUTOMATIC_PACKIN_FOLDERS);
|
||||
automaticPackin(timeout, folders, true);
|
||||
}
|
||||
});
|
||||
} else {
|
||||
|
@ -361,7 +357,8 @@ public class PackInApplicationActivator extends AbstractActivator{
|
|||
public void stateChange(ServerStateChangeEvent event) {
|
||||
if (event.getEventType() == ServerStateChangeEvent.SERVER_START && service != null) {
|
||||
int timeout = MSysConfig.getIntValue(MSysConfig.AUTOMATIC_PACKIN_INITIAL_DELAY, 120) * 1000;
|
||||
automaticPackin(timeout, fPackinFolders, true);
|
||||
String folders = MSysConfig.getValue(MSysConfig.AUTOMATIC_PACKIN_FOLDERS);
|
||||
automaticPackin(timeout, folders, true);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue