Skip to content

Commit

Permalink
Bugfix: replace countdown latches with awaitility (#1506)
Browse files Browse the repository at this point in the history
* replaced countdown latches with awaitility

* pr remarks
  • Loading branch information
paullatzelsperger committed Jun 22, 2022
1 parent 147ae2f commit a1ec87b
Show file tree
Hide file tree
Showing 3 changed files with 175 additions and 145 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ in the detailed section referring to by linking pull requests or issues.
* Fix usage of `NAME` property in `HttpDataSourceFactory` (#1460)
* Fix clearing Loaders in the FCC (#1495)
* Avoid endless loops in `ContractNegotiationManager` (#1487)
* Fix race condition in `ContractNegotiationIntegrationTest` (#1505)

## [milestone-4] - 2022-06-07

Expand Down
3 changes: 3 additions & 0 deletions core/contract/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@
*
* Contributors:
* Daimler TSS GmbH - Initial API and Implementation
* Microsoft Corporation - introduced Awaitility
*
*/

val openTelemetryVersion: String by project
val awaitility: String by project

plugins {
`java-library`
Expand All @@ -28,6 +30,7 @@ dependencies {
testImplementation(project(":core:defaults"))
testImplementation(project(":extensions:junit"))
testImplementation(testFixtures(project(":common:util")))
testImplementation("org.awaitility:awaitility:${awaitility}")
}

publishing {
Expand Down
Loading

0 comments on commit a1ec87b

Please sign in to comment.