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
5c16d42a
Commit
5c16d42a
authored
May 04, 2016
by
Shwetha GS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-602 Hooks stuck in case of failure (svimal2106 via shwethags)
parent
f8748cce
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
0 deletions
+46
-0
AtlasHook.java
...cation/src/main/java/org/apache/atlas/hook/AtlasHook.java
+1
-0
AtlasHookTest.java
...on/src/test/java/org/apache/atlas/hook/AtlasHookTest.java
+44
-0
release-log.txt
release-log.txt
+1
-0
No files found.
notification/src/main/java/org/apache/atlas/hook/AtlasHook.java
View file @
5c16d42a
...
...
@@ -103,6 +103,7 @@ public abstract class AtlasHook {
}
else
{
LOG
.
error
(
"Failed to notify atlas for entity {} after {} retries. Quitting"
,
message
,
maxRetries
,
e
);
return
;
}
}
}
...
...
notification/src/test/java/org/apache/atlas/hook/AtlasHookTest.java
0 → 100644
View file @
5c16d42a
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
apache
.
atlas
.
hook
;
import
org.apache.atlas.notification.NotificationException
;
import
org.apache.atlas.notification.NotificationInterface
;
import
org.apache.atlas.notification.hook.HookNotification
;
import
org.testng.annotations.Test
;
import
java.util.ArrayList
;
import
java.util.List
;
import
static
org
.
mockito
.
Mockito
.
doThrow
;
import
static
org
.
mockito
.
Mockito
.
mock
;
public
class
AtlasHookTest
{
@Test
public
void
testnotifyEntities
()
throws
Exception
{
List
<
HookNotification
.
HookNotificationMessage
>
hookNotificationMessages
=
new
ArrayList
<>();
NotificationInterface
notifInterface
=
mock
(
NotificationInterface
.
class
);
doThrow
(
new
NotificationException
(
new
Exception
())).
when
(
notifInterface
)
.
send
(
NotificationInterface
.
NotificationType
.
HOOK
,
hookNotificationMessages
);
AtlasHook
.
notifInterface
=
notifInterface
;
AtlasHook
.
notifyEntities
(
hookNotificationMessages
,
2
);
System
.
out
.
println
(
"AtlasHook.notifyEntities() returns successfully"
);
}
}
release-log.txt
View file @
5c16d42a
...
...
@@ -18,6 +18,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-602 Hooks stuck in case of failure (svimal2106 via shwethags)
ATLAS-631 Introduce Versioning to Atlas Notification Payload (tbeerbower via shwethags)
ATLAS-723 JSON deserialization regression (guptaneeru via shwethags)
ATLAS-728 Fix few typos in committer email IDs (yhemanth)
...
...
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