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

Andreas Veithen resolved SYNAPSE-504.
-------------------------------------

       Resolution: Fixed
    Fix Version/s:     (was: 1.1.1)
                   1.3

> [PATCH] Fix faulty if guard for setting ds catalog
> --------------------------------------------------
>
>                 Key: SYNAPSE-504
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-504
>             Project: Synapse
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.1.1
>            Reporter: Dave Brosius
>            Assignee: Andreas Veithen
>            Priority: Minor
>             Fix For: 1.3
>
>         Attachments: faulty_if_guard.diff
>
>
> code uses faulty if guard
> if (defaultCatalog != null || !"".equals(defaultCatalog)) {
>                 basicDataSource.setDefaultCatalog(defaultCatalog);
>             }
> patch fixes this
> if (defaultCatalog != null && !"".equals(defaultCatalog)) {
>                 basicDataSource.setDefaultCatalog(defaultCatalog);
>             }

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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to