Skip to content

Commit

Permalink
Fix to NAS-2569 hot-tested in a running ViewerProxy instance.
Browse files Browse the repository at this point in the history
  • Loading branch information
csrster committed Oct 24, 2016
1 parent 19d3ed8 commit 79e57c7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -224,7 +224,7 @@ private ARCKey luceneLookUp(String uri) {
continue;
}
String[] originParts = origin.split(",");
if (originParts.length != 2) {
if (originParts.length < 2) {
throw new IllegalState("Bad origin for URL '" + uri + "': '" + origin + "'");
}
log.debug("Found document with origin: {}", origin);
Expand Down

0 comments on commit 79e57c7

Please sign in to comment.