You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pact Broker java version used: au.com.dius.pact.provider:junit5:4.2.13
While passing the property pactbroker.url instead of deprecated(host,scheme,port) I have the wrong output in logs (tests report):
Pact Broker http://null ......
The problem is in PactSource.kt -> PactBrokerSource constructor -> :
where I : Interaction {
override fun description() =
if (port == null) {
"Pact Broker $scheme://$host"
} else {
"Pact Broker $scheme://$host:$port"
}
}
Here you still using old(deprecated) properties. And if you pass new one, you have wrong output.
It's a minor bug.
The text was updated successfully, but these errors were encountered:
danilchican
changed the title
Filtering consumers with WIP enabled will retrieve not requested Consumer's WIP pacts.
Wrong output while running provider verification test
Sep 27, 2021
Pact Broker java version used:
au.com.dius.pact.provider:junit5:4.2.13
While passing the property
pactbroker.url
instead of deprecated(host,scheme,port) I have the wrong output in logs (tests report):The problem is in PactSource.kt -> PactBrokerSource constructor -> :
Here you still using old(deprecated) properties. And if you pass new one, you have wrong output.
It's a minor bug.
The text was updated successfully, but these errors were encountered: