Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
d3a275c3
Commit
d3a275c3
authored
10 years ago
by
Venkatesh Seetharam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes minor issues with merge conflicts. Contributed by Venkatesh Seetharam
parent
87e36721
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
10 deletions
+6
-10
InstallationSteps.txt
InstallationSteps.txt
+2
-1
notifications.html
...d-v2/public/modules/notification/views/notifications.html
+0
-6
notifications.html
...d/v2/public/modules/notification/views/notifications.html
+1
-1
HdfsStoreTest.java
...hadoop/metadata/typesystem/types/store/HdfsStoreTest.java
+3
-2
No files found.
InstallationSteps.txt
View file @
d3a275c3
...
@@ -96,7 +96,8 @@ c. Using Falcon
...
@@ -96,7 +96,8 @@ c. Using Falcon
curl -v http://localhost:21000/api/metadata/entities/list/hive_database
curl -v http://localhost:21000/api/metadata/entities/list/hive_database
* Search for entities (instances) in the repository
curl -v http://localhost:21000/api/metadata/discovery/search/dsl?query="from hive_table"
d. Stopping Falcon Server
d. Stopping Falcon Server
~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~
...
...
This diff is collapsed.
Click to expand it.
dashboard/dashboard-v2/public/modules/notification/views/notifications.html
deleted
100644 → 0
View file @
87e36721
<div
class=
"container"
data-ng-controller=
"NotificationController"
>
<alert
data-ng-repeat=
"notification in getNotifications()"
data-type=
"{{notification.type}}"
data-close=
"close(notification)"
>
{{notification.message}}
</alert>
</div>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/notification/views/notifications.html
View file @
d3a275c3
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
~ limitations under the License.
~ limitations under the License.
-->
-->
<div
data-ng-controller=
"NotificationController"
>
<div
class=
"container"
data-ng-controller=
"NotificationController"
>
<alert
data-ng-repeat=
"notification in getNotifications()"
data-type=
"{{notification.type}}"
data-close=
"close(notification)"
>
<alert
data-ng-repeat=
"notification in getNotifications()"
data-type=
"{{notification.type}}"
data-close=
"close(notification)"
>
{{notification.message}}
{{notification.message}}
</alert>
</alert>
...
...
This diff is collapsed.
Click to expand it.
typesystem/src/test/java/org/apache/hadoop/metadata/typesystem/types/store/HdfsStoreTest.java
View file @
d3a275c3
...
@@ -33,6 +33,7 @@ import org.apache.hadoop.metadata.typesystem.types.HierarchicalTypeDefinition;
...
@@ -33,6 +33,7 @@ import org.apache.hadoop.metadata.typesystem.types.HierarchicalTypeDefinition;
import
org.apache.hadoop.metadata.typesystem.types.StructTypeDefinition
;
import
org.apache.hadoop.metadata.typesystem.types.StructTypeDefinition
;
import
org.apache.hadoop.metadata.typesystem.types.TraitType
;
import
org.apache.hadoop.metadata.typesystem.types.TraitType
;
import
org.apache.hadoop.metadata.typesystem.types.TypeSystem
;
import
org.apache.hadoop.metadata.typesystem.types.TypeSystem
;
import
org.apache.hadoop.metadata.typesystem.types.utils.TypesUtil
;
import
org.junit.Before
;
import
org.junit.Before
;
import
org.junit.Test
;
import
org.junit.Test
;
...
@@ -51,7 +52,7 @@ public class HdfsStoreTest extends BaseTest {
...
@@ -51,7 +52,7 @@ public class HdfsStoreTest extends BaseTest {
//define type system
//define type system
HierarchicalTypeDefinition
<
TraitType
>
tagTypeDefinition
=
HierarchicalTypeDefinition
<
TraitType
>
tagTypeDefinition
=
createTraitTypeDef
(
"tag"
,
TypesUtil
.
createTraitTypeDef
(
"tag"
,
ImmutableList
.<
String
>
of
(),
ImmutableList
.<
String
>
of
(),
createRequiredAttrDef
(
"level"
,
DataTypes
.
INT_TYPE
));
createRequiredAttrDef
(
"level"
,
DataTypes
.
INT_TYPE
));
HierarchicalTypeDefinition
<
ClassType
>
databaseTypeDefinition
=
HierarchicalTypeDefinition
<
ClassType
>
databaseTypeDefinition
=
...
@@ -59,7 +60,7 @@ public class HdfsStoreTest extends BaseTest {
...
@@ -59,7 +60,7 @@ public class HdfsStoreTest extends BaseTest {
ImmutableList
.<
String
>
of
(),
ImmutableList
.<
String
>
of
(),
createRequiredAttrDef
(
"name"
,
DataTypes
.
STRING_TYPE
),
createRequiredAttrDef
(
"name"
,
DataTypes
.
STRING_TYPE
),
createRequiredAttrDef
(
"description"
,
DataTypes
.
STRING_TYPE
),
createRequiredAttrDef
(
"description"
,
DataTypes
.
STRING_TYPE
),
createRequiredAttrDef
(
"tag"
,
"tag"
));
createRequiredAttrDef
(
"tag"
,
DataTypes
.
STRING_TYPE
));
TypeSystem
.
getInstance
().
defineTypes
(
TypeSystem
.
getInstance
().
defineTypes
(
ImmutableList
.<
StructTypeDefinition
>
of
(),
ImmutableList
.<
StructTypeDefinition
>
of
(),
ImmutableList
.
of
(
tagTypeDefinition
),
ImmutableList
.
of
(
tagTypeDefinition
),
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment