Skip to content

Commit

Permalink
Merge pull request #1258 from camunda/meg-1257-update-grpc
Browse files Browse the repository at this point in the history
fix: update grpc version to 1.68.0 to fix incompatiblity
  • Loading branch information
saig0 authored Nov 4, 2024
2 parents 2a99de0 + 44c8d3f commit 8048733
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@

<skipChecks>false</skipChecks>

<version.grpc>1.65.1</version.grpc>
<!-- Note: needs to be aligned with the version used by io.camunda:zeebe-client-java -->
<version.grpc>1.68.0</version.grpc>
<version.java>21</version.java>
<version.protobuf>3.19.4</version.protobuf>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import static org.assertj.core.api.Assertions.assertThat;

import io.camunda.zeebe.client.ZeebeClient;
import io.camunda.zeebe.client.api.response.Topology;
import io.camunda.zeebe.process.test.api.ZeebeTestEngine;
import org.junit.jupiter.api.Test;

Expand All @@ -31,4 +32,10 @@ void testFieldsAreInjectedSuccessfully() {
assertThat(client).isNotNull();
assertThat(engine).isNotNull();
}

@Test
void testClientCanSendCommand() {
final Topology topology = client.newTopologyRequest().send().join();
assertThat(topology.getGatewayVersion()).isNotNull();
}
}

0 comments on commit 8048733

Please sign in to comment.