Hi there, I am trying to execute `describe-pactici...
# pact-broker
s
Hi there, I am trying to execute
describe-pacticipant
to double check if the main branch is configured but getting a "`Could not find command 'describe-pacticipant'`" . When I do a describe-version with similar parameters I works perfectly! Any thoughts?
Copy code
docker run --rm \
  pactfoundation/pact-cli:latest \
  broker describe-pacticipant \
  --name my-pacticipant \
  --broker-base-url <https://my_broker_base_url.com> \
  --broker-username my_user \
  --broker-password my_password

Resulting -> Could not find command "describe-pacticipant".
t
is it listed if you do a
broker help
? What do you get with
broker version
?
s
No it is not listed in broker help
docker run --rm \
pactfoundation/pact-cli:latest \
broker help
Commands:
broker can-i-deploy -a, --pacticipant=PACTICIPANT -b, --broker-base-url=BRO...
broker create-or-update-pacticipant --name=NAME -b, --broker-base-url=BROKE...
broker create-or-update-webhook URL --uuid=UUID -X, --request=METHOD -b, --...
broker create-version-tag -a, --pacticipant=PACTICIPANT -b, --broker-base-u...
broker create-webhook URL -X, --request=METHOD -b, --broker-base-url=BROKER...
broker describe-version -a, --pacticipant=PACTICIPANT -b, --broker-base-url...
broker generate-uuid                                                       ...
broker help [COMMAND]                                                      ...
broker list-latest-pact-versions -b, --broker-base-url=BROKER_BASE_URL     ...
broker publish PACT_DIRS_OR_FILES ... -a, --consumer-app-version=CONSUMER_A...
broker test-webhook --uuid=UUID -b, --broker-base-url=BROKER_BASE_URL      ...
broker version
Broker version is
1.37.0
t
The latest version is 1.65.0. Are you sure your image is actually the latest?
s
My bad, I thought I pulled the latest image. Works fine now! ty
🙌 1