diff options
author | Kai <lukai@chinamobile.com> | 2021-03-01 18:13:26 +0800 |
---|---|---|
committer | Kai <lukai@chinamobile.com> | 2021-03-01 18:14:45 +0800 |
commit | 57e8d13a68698a8c0daed6c0b0d934c9b2cb4b21 (patch) | |
tree | d2a51a7b48c334d0e141b838004e6295ce8046c5 /dcae-analytics | |
parent | 1d2daa763efd7c1fb55c85f040b152fe68d1d1a1 (diff) |
TCAgen2 container CrashLoopBackOff error fix
Issue-ID: DCAEGEN2-2654
Signed-off-by: Kai Lu <lukai@chinamobile.com>
Change-Id: Ibe55a81630bbeafbf97e149f8ef2cfe182e09347
Diffstat (limited to 'dcae-analytics')
-rw-r--r-- | dcae-analytics/dcae-analytics-model/pom.xml | 10 | ||||
-rw-r--r-- | dcae-analytics/dcae-analytics-tca-core/pom.xml | 10 | ||||
-rw-r--r-- | dcae-analytics/dcae-analytics-tca-model/pom.xml | 10 | ||||
-rw-r--r-- | dcae-analytics/dcae-analytics-tca-web/pom.xml | 10 | ||||
-rw-r--r-- | dcae-analytics/dcae-analytics-web/pom.xml | 10 |
5 files changed, 50 insertions, 0 deletions
diff --git a/dcae-analytics/dcae-analytics-model/pom.xml b/dcae-analytics/dcae-analytics-model/pom.xml index 90a9b35..75898e7 100644 --- a/dcae-analytics/dcae-analytics-model/pom.xml +++ b/dcae-analytics/dcae-analytics-model/pom.xml @@ -102,6 +102,16 @@ <version>0.9.12.RELEASE</version> </dependency> <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler</artifactId> + <version>4.1.54.Final</version> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler-proxy</artifactId> + <version>4.1.54.Final</version> + </dependency> + <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> </dependency> diff --git a/dcae-analytics/dcae-analytics-tca-core/pom.xml b/dcae-analytics/dcae-analytics-tca-core/pom.xml index 09d90e1..64ea595 100644 --- a/dcae-analytics/dcae-analytics-tca-core/pom.xml +++ b/dcae-analytics/dcae-analytics-tca-core/pom.xml @@ -71,6 +71,16 @@ <groupId>${project.groupId}</groupId> <artifactId>dcae-analytics-test</artifactId> </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler</artifactId> + <version>4.1.54.Final</version> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler-proxy</artifactId> + <version>4.1.54.Final</version> + </dependency> </dependencies> diff --git a/dcae-analytics/dcae-analytics-tca-model/pom.xml b/dcae-analytics/dcae-analytics-tca-model/pom.xml index a24c3fd..9343142 100644 --- a/dcae-analytics/dcae-analytics-tca-model/pom.xml +++ b/dcae-analytics/dcae-analytics-tca-model/pom.xml @@ -62,6 +62,16 @@ <groupId>${project.groupId}</groupId> <artifactId>dcae-analytics-test</artifactId> </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler</artifactId> + <version>4.1.54.Final</version> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler-proxy</artifactId> + <version>4.1.54.Final</version> + </dependency> </dependencies> diff --git a/dcae-analytics/dcae-analytics-tca-web/pom.xml b/dcae-analytics/dcae-analytics-tca-web/pom.xml index fdee04e..3d4784d 100644 --- a/dcae-analytics/dcae-analytics-tca-web/pom.xml +++ b/dcae-analytics/dcae-analytics-tca-web/pom.xml @@ -120,6 +120,16 @@ <groupId>io.undertow</groupId> <artifactId>undertow-core</artifactId> </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler</artifactId> + <version>4.1.54.Final</version> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler-proxy</artifactId> + <version>4.1.54.Final</version> + </dependency> </dependencies> diff --git a/dcae-analytics/dcae-analytics-web/pom.xml b/dcae-analytics/dcae-analytics-web/pom.xml index c0a20ce..c217c93 100644 --- a/dcae-analytics/dcae-analytics-web/pom.xml +++ b/dcae-analytics/dcae-analytics-web/pom.xml @@ -144,6 +144,16 @@ <groupId>io.undertow</groupId> <artifactId>undertow-core</artifactId> </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler</artifactId> + <version>4.1.54.Final</version> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-handler-proxy</artifactId> + <version>4.1.54.Final</version> + </dependency> </dependencies> |