You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ap...@apache.org on 2018/10/21 17:46:11 UTC

atlas git commit: ATLAS-2919: Fixed issue with Cassandra and Netty

Repository: atlas
Updated Branches:
  refs/heads/master f5fd57475 -> 3b8a34c51


ATLAS-2919: Fixed issue with Cassandra and Netty

Signed-off-by: apoorvnaik <ap...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/atlas/repo
Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/3b8a34c5
Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/3b8a34c5
Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/3b8a34c5

Branch: refs/heads/master
Commit: 3b8a34c51eeadb54adeed78bea1e1ec3b03e279f
Parents: f5fd574
Author: Zinovii Dmytriv <zi...@verygood.systems>
Authored: Sun Oct 21 10:45:47 2018 -0700
Committer: apoorvnaik <ap...@apache.org>
Committed: Sun Oct 21 10:46:08 2018 -0700

----------------------------------------------------------------------
 repository/pom.xml |  8 ++++++++
 webapp/pom.xml     | 12 ++++++++++++
 2 files changed, 20 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/atlas/blob/3b8a34c5/repository/pom.xml
----------------------------------------------------------------------
diff --git a/repository/pom.xml b/repository/pom.xml
index 8dcc019..8198610 100755
--- a/repository/pom.xml
+++ b/repository/pom.xml
@@ -97,6 +97,10 @@
                     <groupId>ch.qos.logback</groupId>
                     <artifactId>*</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>io.netty</groupId>
+                    <artifactId>netty-handler</artifactId>
+                </exclusion>
             </exclusions>
             <version>2.1.8</version>
         </dependency>
@@ -189,6 +193,10 @@
                     <groupId>io.dropwizard.metrics</groupId>
                     <artifactId>metrics-core</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>io.netty</groupId>
+                    <artifactId>netty-handler</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
         <dependency>

http://git-wip-us.apache.org/repos/asf/atlas/blob/3b8a34c5/webapp/pom.xml
----------------------------------------------------------------------
diff --git a/webapp/pom.xml b/webapp/pom.xml
index 78aa81e..e1988c3 100755
--- a/webapp/pom.xml
+++ b/webapp/pom.xml
@@ -76,6 +76,12 @@
         <dependency>
             <groupId>org.apache.atlas</groupId>
             <artifactId>atlas-graphdb-impls</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>io.netty</groupId>
+                    <artifactId>netty-handler</artifactId>
+                </exclusion>
+            </exclusions>
             <type>pom</type>
         </dependency>
 
@@ -93,6 +99,12 @@
         <dependency>
             <groupId>org.apache.atlas</groupId>
             <artifactId>atlas-repository</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>io.netty</groupId>
+                    <artifactId>netty-handler</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>