Commit 4ac85a41 authored by Łukasz Nowak's avatar Łukasz Nowak

Avoid early failing.

Do not index instances without specialise.

Note: the checks shall be done on consistency check level, not by relying on
catalog raises.
parent f83b9f05
......@@ -67,9 +67,11 @@ WHERE\n
\n
<dtml-let row_list="[]">\n
<dtml-in prefix="loop" expr="_.range(_.len(uid))">\n
<dtml-call expr="row_list.append([\n
<dtml-if expr="getSpecialiseUid[loop_item]">\n
<dtml-call expr="row_list.append([\n
uid[loop_item],\n
getSpecialiseUid[loop_item]])">\n
</dtml-if>\n
</dtml-in>\n
\n
<dtml-if "row_list">\n
......
43
\ No newline at end of file
44
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment