Skip to content

Commit

Permalink
[SRE-20063] Update AgentWatchDog to replace instances when unable to …
Browse files Browse the repository at this point in the history
…connect
  • Loading branch information
bryaan authored Feb 15, 2022
1 parent 56aea76 commit 495b2fa
Show file tree
Hide file tree
Showing 4 changed files with 257 additions and 179 deletions.
17 changes: 14 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
<version.surefire>2.22.2</version.surefire>
<version.jersey>2.34</version.jersey>
<version.junit>5.8.2</version.junit>
<version.mockito>4.2.0</version.mockito>
<version.httpclient>4.5.13</version.httpclient>
<version.httpclient5>5.1.2</version.httpclient5>
<version.lucene>8.11.0</version.lucene>
Expand Down Expand Up @@ -287,7 +288,7 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>test-support</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

Expand All @@ -296,7 +297,11 @@
<artifactId>mockito-inline</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-junit5</artifactId>
Expand Down Expand Up @@ -758,7 +763,13 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
<version>3.9.0</version>
<version>${version.mockito}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${version.mockito}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Loading

0 comments on commit 495b2fa

Please sign in to comment.