Repository: incubator-atlas Updated Branches: refs/heads/master 125dc976b -> 046ff52b0
ATLAS-555 Tag creation from UI fails due to missing description attribute (guptaneeru via shwethags) Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/046ff52b Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/046ff52b Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/046ff52b Branch: refs/heads/master Commit: 046ff52b02636e80aca33976457b74c73d79813b Parents: 125dc97 Author: Shwetha GS <[email protected]> Authored: Fri Mar 11 10:46:49 2016 +0530 Committer: Shwetha GS <[email protected]> Committed: Fri Mar 11 10:46:49 2016 +0530 ---------------------------------------------------------------------- .../public/modules/tags/definition/definitionTagsController.js | 1 + dashboard/public/modules/tags/tagClasses.js | 1 + release-log.txt | 1 + 3 files changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/046ff52b/dashboard/public/modules/tags/definition/definitionTagsController.js ---------------------------------------------------------------------- diff --git a/dashboard/public/modules/tags/definition/definitionTagsController.js b/dashboard/public/modules/tags/definition/definitionTagsController.js index bef32b8..40f77bc 100755 --- a/dashboard/public/modules/tags/definition/definitionTagsController.js +++ b/dashboard/public/modules/tags/definition/definitionTagsController.js @@ -23,6 +23,7 @@ angular.module('dgc.tags.definition').controller('definitionTagsController', ['$ $scope.category = 'TRAIT'; $scope.tagModel = { typeName: null, + typeDescription: null, superTypes: [], attributeDefinitions: [] }; http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/046ff52b/dashboard/public/modules/tags/tagClasses.js ---------------------------------------------------------------------- diff --git a/dashboard/public/modules/tags/tagClasses.js b/dashboard/public/modules/tags/tagClasses.js index 6bbbad3..375d911 100644 --- a/dashboard/public/modules/tags/tagClasses.js +++ b/dashboard/public/modules/tags/tagClasses.js @@ -24,6 +24,7 @@ angular.module('dgc.tags').factory('tagClasses', ['lodash', function classFactor return _.merge({ superTypes: [], typeName: null, + typeDescription: null, attributeDefinitions: [] }, props); } http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/046ff52b/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index c8545b1..272edaf 100644 --- a/release-log.txt +++ b/release-log.txt @@ -11,6 +11,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags) ALL CHANGES: +ATLAS-555 Tag creation from UI fails due to missing description attribute (guptaneeru via shwethags) ATLAS-522 Support Alter table commands (sumasai via shwethags) ATLAS-512 Decouple currently integrating components from availability of Atlas service for raising metadata events ( yhemanth via sumasai) ATLAS-537 Falcon hook failing when tried to submit a process which creates a hive table ( shwethags via sumasai)
