From 688df2e7f8ef0a0db2c1c232089933c308861759 Mon Sep 17 00:00:00 2001 From: ribeaudc <ribeaudc> Date: Wed, 14 May 2008 19:08:59 +0000 Subject: [PATCH] [DMV-12] add: - 'DirectoryScanningChangeListener'. - 'highwater-mark' value in integration tests for both datamovers. change: - 'Main.UnhandledPathsChangeListener' renamed to 'PathHandlerInterceptor' and moved to 'common'. - 'LocalProcessor' constructor and 'LocalProcessor.create' method removed. - 'IFileStore' extends 'ISelfTestable' and default 'check' method implementation in 'FileStore'. minor: - Javadoc improved in 'IPathMover' and 'FileStoreRemoteMounted'. - final keyword added when possible. SVN: 6047 --- .../templates/datamover-analysis/etc/service.properties | 4 ++++ .../templates/datamover-raw/etc/service.properties | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/integration-tests/templates/datamover-analysis/etc/service.properties b/integration-tests/templates/datamover-analysis/etc/service.properties index 101d54d0b6c..c6782798e1f 100644 --- a/integration-tests/templates/datamover-analysis/etc/service.properties +++ b/integration-tests/templates/datamover-analysis/etc/service.properties @@ -1,6 +1,10 @@ incoming-dir = ../data/in-analysis buffer-dir = data/buffer +# Value must be specified in kilobytes (1048576 = 1024 * 1024 = 1GB). If no high water mark is +# specified or if value is negative, the system will not be watching. +buffer-dir.highwater-mark = 1048576 outgoing-dir = ../data/out-analysis +# outgoing-dir.highwater-mark = 1048576 manual-intervention-dir = data/manual_intervention check-interval = 2 quiet-period = 5 diff --git a/integration-tests/templates/datamover-raw/etc/service.properties b/integration-tests/templates/datamover-raw/etc/service.properties index 657bd94d135..b57e98c7166 100644 --- a/integration-tests/templates/datamover-raw/etc/service.properties +++ b/integration-tests/templates/datamover-raw/etc/service.properties @@ -1,6 +1,10 @@ incoming-dir = ../data/in-raw buffer-dir = data/buffer +# Value must be specified in kilobytes (1048576 = 1024 * 1024 = 1GB). If no high water mark is +# specified or if value is negative, the system will not be watching. +buffer-dir.highwater-mark = 1048576 outgoing-dir = ../data/out-raw +# outgoing-dir.highwater-mark = 1048576 manual-intervention-dir = data/manual_intervention extra-copy-dir = ../data/analysis-copy treat-incoming-as-remote = true -- GitLab