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
05bdbc62
Commit
05bdbc62
authored
8 years ago
by
Madhan Neethiraj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-1367: fix to use correct version of curator-client library
parent
b3efebc9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
1 deletion
+13
-1
pom.xml
pom.xml
+6
-0
release-log.txt
release-log.txt
+1
-0
pom.xml
webapp/pom.xml
+5
-0
SetupSteps.java
.../src/main/java/org/apache/atlas/web/setup/SetupSteps.java
+1
-1
No files found.
pom.xml
View file @
05bdbc62
...
@@ -816,6 +816,12 @@
...
@@ -816,6 +816,12 @@
<dependency>
<dependency>
<groupId>
org.apache.curator
</groupId>
<groupId>
org.apache.curator
</groupId>
<artifactId>
curator-client
</artifactId>
<version>
${curator.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.curator
</groupId>
<artifactId>
curator-recipes
</artifactId>
<artifactId>
curator-recipes
</artifactId>
<version>
${curator.version}
</version>
<version>
${curator.version}
</version>
</dependency>
</dependency>
...
...
This diff is collapsed.
Click to expand it.
release-log.txt
View file @
05bdbc62
...
@@ -9,6 +9,7 @@ ATLAS-1060 Add composite indexes for exact match performance improvements for al
...
@@ -9,6 +9,7 @@ ATLAS-1060 Add composite indexes for exact match performance improvements for al
ATLAS-1127 Modify creation and modification timestamps to Date instead of Long(sumasai)
ATLAS-1127 Modify creation and modification timestamps to Date instead of Long(sumasai)
ALL CHANGES:
ALL CHANGES:
ATLAS-1367 fix to use correct version of curator-client library (mneethiraj)
ATLAS-1371 create/edit tag dialog to allow choosing of data-type for attributes (Kalyanikashikar via mneethiraj)
ATLAS-1371 create/edit tag dialog to allow choosing of data-type for attributes (Kalyanikashikar via mneethiraj)
ATLAS-1395 Lineage improvement for tooltip (kevalbhatt via mneethiraj)
ATLAS-1395 Lineage improvement for tooltip (kevalbhatt via mneethiraj)
ATLAS-1193 UI to create/update entities (Kalyanikashikar via mneethiraj)
ATLAS-1193 UI to create/update entities (Kalyanikashikar via mneethiraj)
...
...
This diff is collapsed.
Click to expand it.
webapp/pom.xml
View file @
05bdbc62
...
@@ -175,6 +175,11 @@
...
@@ -175,6 +175,11 @@
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.apache.curator
</groupId>
<artifactId>
curator-client
</artifactId>
</dependency>
<dependency>
<groupId>
org.apache.zookeeper
</groupId>
<groupId>
org.apache.zookeeper
</groupId>
<artifactId>
zookeeper
</artifactId>
<artifactId>
zookeeper
</artifactId>
</dependency>
</dependency>
...
...
This diff is collapsed.
Click to expand it.
webapp/src/main/java/org/apache/atlas/web/setup/SetupSteps.java
View file @
05bdbc62
...
@@ -78,7 +78,7 @@ public class SetupSteps {
...
@@ -78,7 +78,7 @@ public class SetupSteps {
}
catch
(
SetupException
se
)
{
}
catch
(
SetupException
se
)
{
LOG
.
error
(
"Got setup exception while trying to setup"
,
se
);
LOG
.
error
(
"Got setup exception while trying to setup"
,
se
);
throw
se
;
throw
se
;
}
catch
(
Exception
e
)
{
}
catch
(
Throwable
e
)
{
LOG
.
error
(
"Error running setup steps"
,
e
);
LOG
.
error
(
"Error running setup steps"
,
e
);
throw
new
SetupException
(
"Error running setup steps"
,
e
);
throw
new
SetupException
(
"Error running setup steps"
,
e
);
}
finally
{
}
finally
{
...
...
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