You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Koji Sekiguchi (JIRA)" <ji...@apache.org> on 2011/06/08 12:39:59 UTC

[jira] [Assigned] (SOLR-2579) UIMAUpdateRequestProcessor ignore error fails if text.length() < 0

     [ https://issues.apache.org/jira/browse/SOLR-2579?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Koji Sekiguchi reassigned SOLR-2579:
------------------------------------

    Assignee: Koji Sekiguchi

> UIMAUpdateRequestProcessor ignore error fails if text.length() < 0
> ------------------------------------------------------------------
>
>                 Key: SOLR-2579
>                 URL: https://issues.apache.org/jira/browse/SOLR-2579
>             Project: Solr
>          Issue Type: Bug
>    Affects Versions: 3.2
>            Reporter: Elmer Garduno
>            Assignee: Koji Sekiguchi
>            Priority: Minor
>             Fix For: 3.3
>
>         Attachments: SOLR-2579.patch
>
>
> If UIMAUpdateRequestProcessor is configured to ignore errors, an exception is raised when logging the error and text.length() < 100.
>       if (solrUIMAConfiguration.isIgnoreErrors())
>         log.warn(new StringBuilder("skip the text processing due to ")
>           .append(e.getLocalizedMessage()).append(optionalFieldInfo)
>           .append(" text=\"").append(text.substring(0, 100)).append("...\"").toString());
>       else{
>         throw new SolrException(ErrorCode.SERVER_ERROR,
>             new StringBuilder("processing error: ")
>               .append(e.getLocalizedMessage()).append(optionalFieldInfo)
>               .append(" text=\"").append(text.substring(0, 100)).append("...\"").toString(), e);
>       }
> I'm submitting a patch.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org