Hi,

First let me thank you for your work. Even though i don't use directly your module, all my work with SOLR is based on your configuration files.

Speaking of which, I've found a very small error in schema.xml :

74     <fieldType name="slong" class="solr.TrieFloatField" sortMissingLast="true" omitNorms="true"/>
75     <fieldType name="sfloat" class="solr.TrieLongField" sortMissingLast="true" omitNorms="true"/>

You have match the name "slong" with the type "solr.TrieFloatField" and vice et versa.

The file should look like

74     <fieldType name="slong" class="solr.TrieLongField" sortMissingLast="true" omitNorms="true"/>
75     <fieldType name="sfloat" class="solr.TrieFloatField" sortMissingLast="true" omitNorms="true"/>

Bye.

CommentFileSizeAuthor
#4 2033913-2.patch1.59 KBNick_vh
#3 2033913-1.patch1.59 KBNick_vh
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

lukas.fischer’s picture

@epieddy, thanks for the feedback. This comment helped me!

Nick_vh’s picture

Project: Apache Solr Search » Apache Solr Common Configurations
Version: 7.x-1.3 »

Moving to the config project

Nick_vh’s picture

Status: Active » Needs review
FileSize
1.59 KB
Nick_vh’s picture

FileSize
1.59 KB
Nick_vh’s picture

This patch fixes it and also corrects the order.

Nick_vh’s picture

Status: Needs review » Fixed

Committed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.