Hi, I have clean Camunda 8.7 installed locally using official docker-compose.yaml file without any modifications and If I try to publish message using /v2/messages/publication
REST API endpoint then I got the following error response:
{
"type": "about:blank",
"title": "io.camunda.zeebe.broker.client.api.NoTopologyAvailableException",
"status": 503,
"detail": "Expected to handle REST API request, but the gateway does not know any partitions yet",
"instance": "/v2/messages/publication"
}
If I try to do the same but using gRPC protocol, then message is successfully published.
What I am doing wrong, why it is not working via REST API?