Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0003250: Fix atch re-extraction issue on clustered setup with shared
cache.
  • Loading branch information
gregwilmer committed Sep 18, 2017
1 parent 564a8c1 commit 299676e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -181,7 +181,7 @@ public IStagedResource find(String path) {
IStagedResource resource = inUse.get(path);
if (resource == null) {
boolean foundResourcePath = resourcePaths.contains(path);
if (clusterEnabled) {
if (!foundResourcePath && clusterEnabled) {
refreshResourceList();
foundResourcePath = resourcePaths.contains(path);
}
Expand Down

0 comments on commit 299676e

Please sign in to comment.