Skip to content

Commit

Permalink
Add build.yml process error.printStackTrace();
Browse files Browse the repository at this point in the history
  • Loading branch information
vharseko committed Mar 13, 2024
1 parent 0eadc47 commit d005b47
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@
<dependency>
<groupId>io.reactivex</groupId>
<artifactId>rxjava</artifactId>
<version>1.2.0</version>
<scope>test</scope>
</dependency>
<!-- Force to build the test bundles before -->
Expand Down
1 change: 0 additions & 1 deletion OpenICF-java-framework/connector-framework-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@
<dependency>
<groupId>io.reactivex</groupId>
<artifactId>rxjava</artifactId>
<version>1.2.0</version>
<scope>test</scope>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ public void handleException(RuntimeException error) {

keyRangePromise.getOrThrowUninterruptibly(10, TimeUnit.SECONDS);
Assert.assertTrue(keyRangePromise.isDone());
Assert.assertFalse(keyRangePromise.isCancelled());

keyRangePromise =
manager.findConnectorInfoAsync(ConnectorKeyRange.newBuilder().setBundleName(
Expand All @@ -200,6 +201,7 @@ public void handleException(RuntimeException error) {

keyRangePromise.getOrThrowUninterruptibly(10, TimeUnit.SECONDS);
Assert.assertTrue(keyRangePromise.isDone());
Assert.assertFalse(keyRangePromise.isCancelled());

manager.addConnectorBundle(bundle11);

Expand All @@ -222,6 +224,7 @@ public void handleException(RuntimeException error) {
});
keyRangePromise.getOrThrowUninterruptibly(10, TimeUnit.SECONDS);
Assert.assertTrue(keyRangePromise.isDone());
Assert.assertFalse(keyRangePromise.isCancelled());
} finally {
connectorFramework.release();
}
Expand Down
1 change: 0 additions & 1 deletion OpenICF-java-framework/connector-server-grizzly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@
<dependency>
<groupId>io.reactivex</groupId>
<artifactId>rxjava</artifactId>
<version>1.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
1 change: 0 additions & 1 deletion OpenICF-java-framework/connector-server-jetty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@
<dependency>
<groupId>io.reactivex</groupId>
<artifactId>rxjava</artifactId>
<version>1.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
11 changes: 6 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -182,11 +182,6 @@
<artifactId>groovy-connector</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.openidentityplatform.openicf.connectors</groupId>
<artifactId>groovy-connector</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.openidentityplatform.openicf.connectors</groupId>
<artifactId>xml-connector</artifactId>
Expand Down Expand Up @@ -229,6 +224,12 @@
<type>zip</type>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.reactivex</groupId>
<artifactId>rxjava</artifactId>
<version>1.2.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
Expand Down

0 comments on commit d005b47

Please sign in to comment.