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:
Noble Paul 2011-06-14 11:39:50 +00:00
parent 931c829406
commit 7e9aeac79b
1 changed files with 3 additions and 1 deletions

View File

@ -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();
}