Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix: replace countdown latches with awaitility #1506

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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