Commit 05bdbc62 by Madhan Neethiraj

ATLAS-1367: fix to use correct version of curator-client library

parent b3efebc9
...@@ -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>
......
...@@ -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)
......
...@@ -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>
......
...@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment