Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Anover000 committed May 19, 2024
1 parent 179a487 commit 7e4c5d1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ private void zeebeConsistencyWorker() {
zeebeClient.newWorker().jobType("zeebe-consistency-worker").handler((client, job) -> {
logger.info("Job '{}' started from process '{}' with key {}", job.getType(), job.getBpmnProcessId(), job.getKey());
Map<String, Object> variables = job.getVariablesAsMap();
logger.info(variables.toString());
variables.put(MESSAGE, "hello world");
client.newCompleteCommand(job.getKey()).send().join();
}).name("zeebe-consistency-worker").maxJobsActive(workerMaxJobs).open();
Expand Down

0 comments on commit 7e4c5d1

Please sign in to comment.