mirror of https://github.com/apache/lucene.git
SOLR-2206 MailEntityProcessor has mispelled words
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1135495 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
931c829406
commit
7e9aeac79b
|
@ -90,7 +90,9 @@ public class MailEntityProcessor extends EntityProcessorBase {
|
|||
fetchSize = getIntFromContext("fetchSize", 32 * 1024);
|
||||
cTimeout = getIntFromContext("connectTimeout", 30 * 1000);
|
||||
rTimeout = getIntFromContext("readTimeout", 60 * 1000);
|
||||
processAttachment = getBoolFromContext("processAttachement", true);
|
||||
processAttachment = getBoolFromContext(
|
||||
getStringFromContext("processAttachment",null) == null ? "processAttachement":"processAttachment"
|
||||
, true);
|
||||
|
||||
logConfig();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue