Skip to content

Commit 347e08c

Browse files
committed
Added notes about what is needed to make schema-building independent of dict-ordering.
1 parent ab750a1 commit 347e08c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

haystack/sites.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ def all_searchfields(self):
9797
if not field_object.index_fieldname in fields:
9898
fields[field_object.index_fieldname] = field_object
9999
else:
100+
# FIXME: This needs to handle verifying the field type is
101+
# the same.
102+
# FIXME: This needs to handle some of the other field
103+
# options, like ``use_template``.
104+
105+
100106
# We've already got this field in the list. Ensure that
101107
# what we hand back is a superset of all options that
102108
# affect the schema.

0 commit comments

Comments
 (0)