Skip to content

Commit

Permalink
CB-22424 failing pr jobs are happing due to race condition when SSLSo…
Browse files Browse the repository at this point in the history
…cketFactory is created in jersey client. The same issue is opened: eclipse-ee4j/jersey#5359 . patching the HttpUrlConnector may help the problem. Modifying the build only in integration test to use this patch
  • Loading branch information
afarsang authored and Krisztian Horvath committed Sep 8, 2023
1 parent bcc63fa commit a8677e1
Show file tree
Hide file tree
Showing 3 changed files with 578 additions and 2 deletions.
9 changes: 9 additions & 0 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,12 @@ configurations {
artifacts {
tests testJar
}

sourceSets {
main {
java {
if (!project.hasProperty("integrationTest"))
exclude 'com/sequenceiq/cloudbreak/client/patch/**'
}
}
}
Loading

0 comments on commit a8677e1

Please sign in to comment.