Skip to content

Commit

Permalink
Client update, Timeout update
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Mar 6, 2024
1 parent 0f12d1a commit 00763ff
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## [Unreleased]
### Changed
- Client version updated on [5.2.5](https://github.com/reportportal/client-java/releases/tag/5.2.5), by @HardNorth

## [5.4.1]
### Changed
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ repositories {
}

dependencies {
api 'com.epam.reportportal:client-java:5.2.4'
api 'com.epam.reportportal:client-java:5.2.5'
api 'com.google.code.findbugs:jsr305:3.0.2'

implementation 'org.testng:testng:7.9.0'
implementation 'org.slf4j:slf4j-api:2.0.4'

testImplementation 'com.epam.reportportal:agent-java-test-utils:0.0.2'
testImplementation 'com.epam.reportportal:agent-java-test-utils:0.0.4'

testImplementation("org.junit.platform:junit-platform-runner:${junit5_runner_version}") {
exclude module: 'junit'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void test_shutdown_hook_finishes_launch_on_java_machine_exit(final Class<
SocketUtils.ServerCallable serverCallable = new SocketUtils.ServerCallable(ss, Collections.emptyMap(), "files/socket_response.txt");
Callable<Process> clientCallable = () -> ProcessUtils.buildProcess(true, clazz,
Collections.singletonMap(StatisticsService.DISABLE_PROPERTY, "1"), String.valueOf(ss.getLocalPort()));
Pair<List<String>, Process> startResult = SocketUtils.executeServerCallable(serverCallable, clientCallable);
Pair<List<String>, Process> startResult = SocketUtils.executeServerCallable(serverCallable, clientCallable, 15);
assertThat(startResult.getValue(), notNullValue());
assertThat("First request is a launch start", startResult.getKey().get(0), startsWith("POST /api/v2/test-project/launch"));

Expand Down

0 comments on commit 00763ff

Please sign in to comment.