berndruecker / flowing-retail

Sample application demonstrating an order fulfillment system decomposed into multiple independant components (e.g. microservices). Showing concrete implementation alternatives using e.g. Java, Spring Boot, Apache Kafka, Camunda, Zeebe, ...
Apache License 2.0
1.31k stars 468 forks source link

No such host is known (<Cluster Id>.zeebe.camunda.io) #59

Closed sabriGit closed 2 years ago

sabriGit commented 2 years ago

Hello, When trying to run this example: I got the following error : Steps done:

@berndruecker , Thanks in advance for your help.

berndruecker commented 2 years ago

Hi @sabriGit. Good catch. You need to update the Zeebe client to >= 1.1.0 in the pom.xml, as Camunda Cloud introduced regions.

<dependency>
    <groupId>io.camunda</groupId>
    <artifactId>spring-zeebe-starter</artifactId>
    <version>1.1.0</version>
</dependency>
berndruecker commented 2 years ago

https://github.com/berndruecker/flowing-retail/issues/60

sabriGit commented 2 years ago

Hi @berndruecker, Thank you, it resolves the issue.