You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by sa...@apache.org on 2014/01/31 04:20:15 UTC

git commit: setting MYSQL_PASSWORD for data cartridge

Updated Branches:
  refs/heads/master cb20545e0 -> 6535864d9


setting MYSQL_PASSWORD for data cartridge


Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/6535864d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/6535864d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/6535864d

Branch: refs/heads/master
Commit: 6535864d98d99358193761cef10d5ec89e610ad2
Parents: cb20545
Author: Sajith Kariyawasam <sa...@wso2.com>
Authored: Fri Jan 31 08:49:14 2014 +0530
Committer: Sajith Kariyawasam <sa...@wso2.com>
Committed: Fri Jan 31 08:49:14 2014 +0530

----------------------------------------------------------------------
 .../stratos/manager/subscription/DataCartridgeSubscription.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/6535864d/components/org.apache.stratos.manager/src/main/java/org/apache/stratos/manager/subscription/DataCartridgeSubscription.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.manager/src/main/java/org/apache/stratos/manager/subscription/DataCartridgeSubscription.java b/components/org.apache.stratos.manager/src/main/java/org/apache/stratos/manager/subscription/DataCartridgeSubscription.java
index e070338..00a92f9 100644
--- a/components/org.apache.stratos.manager/src/main/java/org/apache/stratos/manager/subscription/DataCartridgeSubscription.java
+++ b/components/org.apache.stratos.manager/src/main/java/org/apache/stratos/manager/subscription/DataCartridgeSubscription.java
@@ -86,7 +86,7 @@ public class DataCartridgeSubscription extends CartridgeSubscription {
         Map<String, String> payloadEntriesMap = new HashMap<String, String>();
         payloadEntriesMap.put("DB_HOST", host);
         payloadEntriesMap.put("DB_USER", username);
-        payloadEntriesMap.put("DB_PASSWORD", password);
+        payloadEntriesMap.put("MYSQL_PASSWORD", password);
 
         return payloadEntriesMap;
     }