Repository: ambari Updated Branches: refs/heads/branch-2.5 5809d4fe3 -> 5e647df17
AMBARI-20005. Credentials from one workflow are getting associated across other workflow.(Padma Priya N via gauravn7) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/5e647df1 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/5e647df1 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/5e647df1 Branch: refs/heads/branch-2.5 Commit: 5e647df17081294b03746d5290f28c8c1444124d Parents: 5809d4f Author: Gaurav Nagar <[email protected]> Authored: Wed Feb 15 17:00:40 2017 +0530 Committer: Gaurav Nagar <[email protected]> Committed: Wed Feb 15 17:00:40 2017 +0530 ---------------------------------------------------------------------- .../views/wfmanager/src/main/resources/ui/app/domain/workflow.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/5e647df1/contrib/views/wfmanager/src/main/resources/ui/app/domain/workflow.js ---------------------------------------------------------------------- diff --git a/contrib/views/wfmanager/src/main/resources/ui/app/domain/workflow.js b/contrib/views/wfmanager/src/main/resources/ui/app/domain/workflow.js index 1f02426..26e72d5 100644 --- a/contrib/views/wfmanager/src/main/resources/ui/app/domain/workflow.js +++ b/contrib/views/wfmanager/src/main/resources/ui/app/domain/workflow.js @@ -51,7 +51,9 @@ var Workflow= Ember.Object.extend(FindNodeMixin,{ this.set("killNodes",Ember.A([])); this.set("globalSetting",null); this.set("name",""); - this.set("draftFormat","jsog"); + this.set("draftVersion", "v1"); + this.set("parameters", null); + this.set("credentials", Ember.A([])); this.appendDefaultKillNode(); src.addTransitionTo(dest); },
