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
39eb9f1e
Commit
39eb9f1e
authored
Jun 15, 2016
by
Hemanth Yamijala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-890 Log received messages in case of error (sumasai via yhemanth)
parent
aad34ae0
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
0 deletions
+25
-0
HookNotification.java
.../org/apache/atlas/notification/hook/HookNotification.java
+24
-0
release-log.txt
release-log.txt
+1
-0
EntityResource.java
...n/java/org/apache/atlas/web/resources/EntityResource.java
+0
-0
No files found.
notification/src/main/java/org/apache/atlas/notification/hook/HookNotification.java
View file @
39eb9f1e
...
@@ -159,6 +159,11 @@ public class HookNotification implements JsonDeserializer<HookNotification.HookN
...
@@ -159,6 +159,11 @@ public class HookNotification implements JsonDeserializer<HookNotification.HookN
public
List
<
Referenceable
>
getEntities
()
throws
JSONException
{
public
List
<
Referenceable
>
getEntities
()
throws
JSONException
{
return
entities
;
return
entities
;
}
}
@Override
public
String
toString
()
{
return
entities
.
toString
();
}
}
}
/**
/**
...
@@ -210,6 +215,16 @@ public class HookNotification implements JsonDeserializer<HookNotification.HookN
...
@@ -210,6 +215,16 @@ public class HookNotification implements JsonDeserializer<HookNotification.HookN
public
String
getAttributeValue
()
{
public
String
getAttributeValue
()
{
return
attributeValue
;
return
attributeValue
;
}
}
@Override
public
String
toString
()
{
return
"{"
+
"entityType='"
+
typeName
+
'\''
+
", attribute="
+
attribute
+
", value="
+
attributeValue
+
", entity="
+
entity
+
'}'
;
}
}
}
/**
/**
...
@@ -247,5 +262,14 @@ public class HookNotification implements JsonDeserializer<HookNotification.HookN
...
@@ -247,5 +262,14 @@ public class HookNotification implements JsonDeserializer<HookNotification.HookN
public
String
getAttributeValue
()
{
public
String
getAttributeValue
()
{
return
attributeValue
;
return
attributeValue
;
}
}
@Override
public
String
toString
()
{
return
"{"
+
"entityType='"
+
typeName
+
'\''
+
", attribute="
+
attribute
+
", value="
+
attributeValue
+
'}'
;
}
}
}
}
}
release-log.txt
View file @
39eb9f1e
...
@@ -23,6 +23,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset
...
@@ -23,6 +23,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)
ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags)
ALL CHANGES:
ALL CHANGES:
ATLAS-890 Log received messages in case of error (sumasai via yhemanth)
ATLAS-888 NPE in NotificationHookConsumer (sumasai via shwethags)
ATLAS-888 NPE in NotificationHookConsumer (sumasai via shwethags)
ATLAS-884 Process registration should call Entity update instead of create (sumasai)
ATLAS-884 Process registration should call Entity update instead of create (sumasai)
ATLAS-515 Ability to initialize Kafka topics with more than 1 replica (yhemanth)
ATLAS-515 Ability to initialize Kafka topics with more than 1 replica (yhemanth)
...
...
webapp/src/main/java/org/apache/atlas/web/resources/EntityResource.java
View file @
39eb9f1e
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