Skip to content
Snippets Groups Projects
Commit 43229e2f authored by tpylak's avatar tpylak
Browse files

etl: fixing regression after DMV-8 (etl server did not work)

SVN: 1620
parent a4e09f41
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,6 @@ import java.util.TimerTask; ...@@ -26,7 +26,6 @@ import java.util.TimerTask;
import org.apache.log4j.Level; import org.apache.log4j.Level;
import org.apache.log4j.Logger; import org.apache.log4j.Logger;
import ch.systemsx.cisd.common.Constants;
import ch.systemsx.cisd.common.exceptions.ConfigurationFailureException; import ch.systemsx.cisd.common.exceptions.ConfigurationFailureException;
import ch.systemsx.cisd.common.logging.ISimpleLogger; import ch.systemsx.cisd.common.logging.ISimpleLogger;
import ch.systemsx.cisd.common.logging.LogCategory; import ch.systemsx.cisd.common.logging.LogCategory;
...@@ -203,10 +202,6 @@ public final class DirectoryScanningTimerTask extends TimerTask implements ISelf ...@@ -203,10 +202,6 @@ public final class DirectoryScanningTimerTask extends TimerTask implements ISelf
{ // Guard: skip faulty paths. { // Guard: skip faulty paths.
return; return;
} }
if (isMarker(path))
{
return;
}
try try
{ {
final boolean handledOK = handler.handle(path); final boolean handledOK = handler.handle(path);
...@@ -223,11 +218,6 @@ public final class DirectoryScanningTimerTask extends TimerTask implements ISelf ...@@ -223,11 +218,6 @@ public final class DirectoryScanningTimerTask extends TimerTask implements ISelf
} }
} }
} }
private static boolean isMarker(File path)
{
return path.getName().startsWith(Constants.MARKER_PREFIX);
}
private void addToFaultyPaths(File path) private void addToFaultyPaths(File path)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment