You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ambari.apache.org by "Billie Rinaldi (JIRA)" <ji...@apache.org> on 2013/04/09 20:20:15 UTC

[jira] [Created] (AMBARI-1846) Arguments passed to PostgresConnector and OracleConnector constructors are in the wrong order

Billie Rinaldi created AMBARI-1846:
--------------------------------------

             Summary: Arguments passed to PostgresConnector and OracleConnector constructors are in the wrong order
                 Key: AMBARI-1846
                 URL: https://issues.apache.org/jira/browse/AMBARI-1846
             Project: Ambari
          Issue Type: Bug
          Components: client
            Reporter: Billie Rinaldi
             Fix For: 1.3.0


In WorkflowJsonService:
{code:java}
    if (StringUtils.contains(DEFAULT_DRIVER, "oracle")) {
      return new OracleConnector(DEFAULT_DRIVER, DEFAULT_URL, DEFAULT_USERNAME, DEFAULT_PASSWORD);
    } else {
      return new PostgresConnector(DEFAULT_DRIVER, DEFAULT_URL, DEFAULT_USERNAME, DEFAULT_PASSWORD);
    }
{code}

In PostgresConnector (and similarly for OracleConnector):
{code:java}
  public PostgresConnector(String connectionURL, String driverName, String username, String password) throws IOException {
{code}


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira