You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by at...@apache.org on 2013/11/19 14:15:09 UTC

git commit: AMBARI-3807 Cannot save config-group due to missing service id. (atkach)

Updated Branches:
  refs/heads/trunk b01ba5c51 -> f6c4620ce


AMBARI-3807 Cannot save config-group due to missing service id. (atkach)


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

Branch: refs/heads/trunk
Commit: f6c4620ce9e027d73ac17bc6ede1559bcff7e134
Parents: b01ba5c
Author: atkach <an...@gmail.com>
Authored: Tue Nov 19 15:15:04 2013 +0200
Committer: atkach <an...@gmail.com>
Committed: Tue Nov 19 15:15:04 2013 +0200

----------------------------------------------------------------------
 ambari-web/app/utils/config.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/f6c4620c/ambari-web/app/utils/config.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/utils/config.js b/ambari-web/app/utils/config.js
index 671e1a3..4c1c4a5 100644
--- a/ambari-web/app/utils/config.js
+++ b/ambari-web/app/utils/config.js
@@ -1120,7 +1120,7 @@ App.config = Em.Object.create({
     sendData.sender = sendData;
     App.ajax.send(sendData);
     if (newConfigGroupData) {
-      newConfigGroupData.set('service', App.Service.find().filterProperty('serviceName', serviceId));
+      newConfigGroupData.set('service', App.Service.find().findProperty('serviceName', serviceId));
       newConfigGroupData.set('name', configGroupName);
       newConfigGroupData.set('description', description);
     }