Skip to content

Commit 191e3b9

Browse files
committed
Removed skip for REST directory
1 parent 11571b7 commit 191e3b9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

quick-start/src/main/java/com/marklogic/hub/service/FileSystemWatcherService.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,6 @@ private void registerAll(final Path start) throws IOException {
131131
public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs)
132132
throws IOException
133133
{
134-
// REST directory is not a flow. It's the rest options. skip it.
135-
if (dir.endsWith("REST")) {
136-
return FileVisitResult.SKIP_SUBTREE;
137-
}
138134
register(dir);
139135
return FileVisitResult.CONTINUE;
140136
}

0 commit comments

Comments
 (0)