[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
Priority: Minor
Fix For: 1.1.1
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]