[ 
https://issues.apache.org/jira/browse/SOLR-2542?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13178999#comment-13178999
 ] 

Lance Norskog commented on SOLR-2542:
-------------------------------------

Frank- please make a patch file (or files for 3.x and trunk) for this. Also, do 
all of the DIH unit tests pass?

                
> 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
>              Labels: dataimport
>             Fix For: 3.6, 4.0
>
>         Attachments: 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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to