Skip to content

Commit

Permalink
Improve repository verification failure message
Browse files Browse the repository at this point in the history
Closes #11922
  • Loading branch information
imotov committed Jul 1, 2015
1 parent 25cc0e1 commit b60f02f
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -193,7 +193,9 @@ public void verify(String seed) {
throw new RepositoryVerificationException(repositoryName, "store location [" + blobStore + "] is not accessible on the node [" + localNode + "]", exp);
}
} else {
throw new RepositoryVerificationException(repositoryName, "store location [" + blobStore + "] is not shared between node [" + localNode + "] and the master node");
throw new RepositoryVerificationException(repositoryName, "a file written by master to the store [" + blobStore + "] cannot be accessed on the node [" + localNode + "]. "
+ "This might indicate that the store [" + blobStore + "] is not shared between this node and the master node or "
+ "that permissions on the store don't allow reading files written by the master node");
}
}

Expand Down

0 comments on commit b60f02f

Please sign in to comment.