hi!
i have a quesstion about WIP pacts
i?m using
? [info] welcome to sbt 1.5.2 (Alpine Java 15.0.3)
? val pact4s = ?io.github.jbwheatley? %% ?pact4s-scalatest? % ?0.0.15?
? val pact4sCirce = ?io.github.jbwheatley? %% ?pact4s-circe? % ?0.0.15"
? *x-pact-broker-version:* 2.81.0
i?ve set
``` override def provider: ProviderInfoBuilder = {
ProviderInfoBuilder(
name = name,
pactSource = PactBrokerWithSelectors(
brokerUrl = brokerUrl,
auth = Some(BasicAuth(brokeUser, brokerPass)),
enablePending = true,
includeWipPactsSince = Some(System.currentTimeMillis().millis - 7.days),
providerTags = List(providerTagFromBranch),
selectors = consumerList
)
).withPort(8080)```
looks like everything needed from
https://docs.pact.io/pact_broker/advanced_topics/wip_pacts/
but in broker logs i have only
```2021-08-11 19:13:12.679944 I [8:puma threadpool 005] pact-broker -- Creating verification 7343 for pact_id=4387 -- {"providerApplicationVersion"=>"420a9da1", "success"=>true, "verifiedBy"=>{"implementation"=>"Pact-JVM", "version"=>"4.2.7"}, "wip"=>false}```
note - ?false?
am i missing something for using WIPs ?