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

Hoss Man resolved SOLR-2542.
----------------------------

    Resolution: Fixed
      Assignee: Linbin Chen

many thanks to Linbin for reporting the bug and providing the initial patch, 
Frank for following up with tests, and Mikhail for getting everything into 
handy patch form and continually prodding the committers about these DIH issues.

Committed revision 1231367.
Committed revision 1231384.

Two notes about the final commit:
 * added ASL to the testcase
 * removed @author tag - as a policy we don't use them in lucene/solr 
                
> dataimport global session putVal blank
> --------------------------------------
>
>                 Key: SOLR-2542
>                 URL: https://issues.apache.org/jira/browse/SOLR-2542
>             Project: Solr
>          Issue Type: Bug
>    Affects Versions: 3.1
>            Reporter: Linbin Chen
>            Assignee: Linbin Chen
>              Labels: dataimport
>             Fix For: 3.6, 4.0
>
>         Attachments: SOLR-2542.3x.patch, SOLR-2542.4x.patch, 
> SOLR-2542.4x.patch, TestContext.java, TestContext.java, 
> dataimport-globalSession-bug-solr3.1.patch
>
>
> {code:title=ContextImpl.java}
>   private void putVal(String name, Object val, Map map) {
>     if(val == null) map.remove(name);
>     else entitySession.put(name, val);
>   }
> {code}
> change to 
> {code:title=ContextImpl.java}
>   private void putVal(String name, Object val, Map map) {
>     if(val == null) map.remove(name);
>     else map.put(name, val);
>   }
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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

Reply via email to