Hello, I am unable to publish pacts to my pact-broker
```let publisher = require('@pact-foundation/pact-node')
let path = require('path')
let opts = {
pactFilesOrDirs: [path.resolve(process.cwd(), 'pacts')],
pactBroker: '
http://spun-up instance',
consumerVersion: '2.0.1',
}
publisher.publishPacts(opts).then(() => console.log('Pacts successfully published'))```
When I run in debug I get less than helpful messages
```C02ZH0DALVCF:bsb-ec-bcp-next-ui john.hamlett$ node .pact/pactPublish.js
[2019-11-25T14:32:51.128Z] INFO: pact-node@10.2.2/2416 on C02ZH0DALVCF: Publishing Pacts to Broker
[2019-11-25T14:32:51.129Z] INFO: pact-node@10.2.2/2416 on C02ZH0DALVCF: Publishing pacts to broker at:
http://mybroker.com
[2019-11-25T14:32:51.130Z] DEBUG: pact-node@10.2.2/2416 on C02ZH0DALVCF: Starting pact binary with '/bin/sh,-c,./standalone/darwin-1.72.2/bin/pact-broker publish '/Users/john.hamlett/repos/ecommerce/bsb-ec-bcp-next-ui/pacts' --broker-base-url '
http://mybroker.com' --consumer-app-version '2.0.0',{"cwd":"/Users/john.hamlett/repos/ecommerce/bsb-ec-bcp-next-ui/node_modules/@pact-foundation/pact-node","detached":true,"env":{"TERM_PROGRAM":"vscode","NVM_CD_FLAGS":"","TERM":"xterm-256color","SHELL":"/bin/bash","TMPDIR":"/var/folders/23/33tswn_s2vv5740s88z955bh8ccgb7/T/","Apple_PubSub_Socket_Render":"/private/tmp/com.apple.launchd.SiNUdL0D8F/Render","TERM_PROGRAM_VERSION":"1.41.0-insider","SDKMAN_PLATFORM":"Darwin","NVM_DIR":"/Users/john.hamlett/.nvm","USER":"john.hamlett","SDKMAN_CANDIDATES_API":"
https://api.sdkman.io/2","SSH_AUTH_SOCK":"/private/tmp/com.apple.launchd.hNknl19EG7/Listeners","__CF_USER_TEXT_ENCODING":"0x10C63D67:0x0:0x0","PATH":"/Users/john.hamlett/.nvm/versions/node/v13.1.0/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/john.hamlett/.sdkman/candidates/java/current/bin:/Users/john.hamlett/.nvm/versions/node/v13.1.0/bin","PWD":"/Users/john.hamlett/repos/ecommerce/bsb-ec-bcp-next-ui","JAVA_HOME":"/Users/john.hamlett/.sdkman/candidates/java/current","LANG":"en_US.UTF-8","SDKMAN_VERSION":"5.7.4+362","XPC_FLAGS":"0x0","XPC_SERVICE_NAME":"0","SHLVL":"2","HOME":"/Users/john.hamlett","LOGNAME":"john.hamlett","SDKMAN_DIR":"/Users/john.hamlett/.sdkman","NVM_BIN":"/Users/john.hamlett/.nvm/versions/node/v13.1.0/bin","SDKMAN_CANDIDATES_DIR":"/Users/john.hamlett/.sdkman/candidates","COLORTERM":"truecolor","_":"/Users/john.hamlett/.nvm/versions/node/v13.1.0/bin/node"}}'
[2019-11-25T14:32:51.134Z] DEBUG: pact-node@10.2.2/2416 on C02ZH0DALVCF: Created './standalone/darwin-1.72.2/bin/pact-broker publish '/Users/john.hamlett/repos/ecommerce/bsb-ec-bcp-next-ui/pacts' --broker-base-url '
http://mybroker.com' --consumer-app-version '2.0.0'' process with PID: 2417
[2019-11-25T14:32:51.828Z] DEBUG: pact-node@10.2.2/2416 on C02ZH0DALVCF:
Publishing bsb-ec-bcp-next-ui/bsb-ec-user-model-service pact to pact broker at
http://mybroker.com
The latest version of this pact can be accessed at the following URL (use this to configure the provider verification):
[2019-11-25T14:32:51.833Z] ERROR: pact-node@10.2.2/2416 on C02ZH0DALVCF:
Could not publish pact:
Publishing bsb-ec-bcp-next-ui/bsb-ec-user-model-service pact to pact broker at
http://mybroker.com
The latest version of this pact can be accessed at the following URL (use this to configure the provider verification):```
I did delete the old pact though the UI, is there something else I need to do?