Skip to content

Commit

Permalink
Resolve conflict with zeebe version
Browse files Browse the repository at this point in the history
  • Loading branch information
sbuettner committed Feb 26, 2024
1 parent 82a406d commit fd21bfc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ private void openWorkerForOutboundConnector(
ZeebeClient client, OutboundConnectorConfiguration connector) {
ZeebeWorkerValue zeebeWorkerValue =
new ZeebeWorkerValue()
.setName(connector.name())
.setType(connector.type())
.setFetchVariables(connector.inputVariables())
.setTimeout(connector.timeout())
.setAutoComplete(true);
.name(connector.name())
.type(connector.type())
.fetchVariables(connector.inputVariables())
.timeout(connector.timeout())
.autoComplete(true);

OutboundConnectorFunction connectorFunction = connectorFactory.getInstance(connector.type());
LOG.trace("Opening worker for connector {}", connector.name());
Expand Down
2 changes: 1 addition & 1 deletion parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ limitations under the License.</license.inlineheader>

<!-- Camunda internal libraries -->
<version.zeebe>8.4.3</version.zeebe>
<version.spring-zeebe>8.4.1</version.spring-zeebe>
<version.feel-engine>1.17.5</version.feel-engine>
<version.spring-zeebe>8.4.2-rc1</version.spring-zeebe>

<!-- Third party dependencies -->

Expand Down

0 comments on commit fd21bfc

Please sign in to comment.