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

Alan Gates reassigned PIG-92:
-----------------------------

    Assignee: Benjamin Francisoud

> PigContext NullPointerException because of uninitialize conf
> ------------------------------------------------------------
>
>                 Key: PIG-92
>                 URL: https://issues.apache.org/jira/browse/PIG-92
>             Project: Pig
>          Issue Type: Bug
>          Components: impl
>    Affects Versions: 0.1.0
>            Reporter: Benjamin Francisoud
>            Assignee: Benjamin Francisoud
>             Fix For: 0.1.0
>
>         Attachments: PIG-92-v01.patch, PIG-92-v02.patch
>
>
> This simple code throw an NPE
> {code:java}
> final PigContext pigContext = new PigContext(ExecType.MAPREDUCE);
> pigContext.getConf().putAll(properties);
> {code}
> Because in PigContext.java:
> {code:java}
> transient private Properties conf = null;
> public void connect() throws ExecException {
>     ... 
>     conf = new Properties();
>     ....
> }
> {code}
> Simple patch:
> {code:java}
> transient private Properties conf = new Properties();
> public void connect() throws ExecException {
>     ... 
> }
> {code}
> This is regression already fix in PIG-69.
> Introduce with PIG-32

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to