Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,10 @@ private SelectorImpl parseSelector() throws ParseException {
if (!nodeTypeInfo.exists()) {
throw getSyntaxError("unknown node type");
}
//diagnostic log message to help identifying the root cause of OAK-12066
if (nodeTypeInfo.getNodeTypeName() == null) {
LOG.warn("Existing node type {} without jcr:nodeTypeName found.", nodeTypeName);
}

String selectorName = nodeTypeName;
if (readIf("AS")) {
Expand Down
Loading