Skip to content

Commit

Permalink
Fix wrong context key for message body (dmyers87#87)
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Flanagan <chris.flanagan@ukg.com>
  • Loading branch information
ChrisFlanTheMan and Chris Flanagan authored Dec 7, 2021
1 parent d0df097 commit b89fc71
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions messaging-kafka/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<parent>
<groupId>com.ultimatesoftware.workflow</groupId>
<artifactId>camunda-message-streaming-parent</artifactId>
<version>0.6.7-SNAPSHOT</version>
<version>0.6.8-SNAPSHOT</version>
<relativePath>..</relativePath> <!-- lookup parent from repository -->
</parent>

<artifactId>camunda-message-streaming-kafka</artifactId>
<version>0.6.7-SNAPSHOT</version>
<version>0.6.8-SNAPSHOT</version>
<name>streaming-kafka</name>
<description>Classes that support stream to and from Kafka</description>

Expand Down
4 changes: 2 additions & 2 deletions messaging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<parent>
<groupId>com.ultimatesoftware.workflow</groupId>
<artifactId>camunda-message-streaming-parent</artifactId>
<version>0.6.7-SNAPSHOT</version>
<version>0.6.8-SNAPSHOT</version>
<relativePath>..</relativePath> <!-- lookup parent from repository -->
</parent>

<artifactId>camunda-message-streaming</artifactId>
<version>0.6.7-SNAPSHOT</version>
<version>0.6.8-SNAPSHOT</version>
<name>streaming</name>
<description>Enables messaging into Camunda from a Spring Streaming source (e.g. Kafka)</description>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class MDCUtils {
public static final String PROCESS_DEFINITION_ID_KEY = "process_definition_id";
public static final String DEPLOYMENT_ID_KEY = "deployment_id";
public static final String MESSAGE_TYPE_EXTENSION_DATA_KEY = "message_type_extension_data";
public static final String MESSAGE_BODY_KEY = "deployment_id";
public static final String MESSAGE_BODY_KEY = "message_body";

public static void addRelevantFieldsToContext(MessageTypeExtensionData messageTypeExtensionData, GenericMessage genericMessage) {
addExtensionDataToContext(messageTypeExtensionData);
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>com.ultimatesoftware.workflow</groupId>
<artifactId>camunda-message-streaming-parent</artifactId>
<version>0.6.7-SNAPSHOT</version>
<version>0.6.8-SNAPSHOT</version>
<name>parent</name>
<description>
Allows BPMN designers to declaratively define what values, from an incoming JSON based message,
Expand Down
4 changes: 2 additions & 2 deletions webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<parent>
<groupId>com.ultimatesoftware.workflow</groupId>
<artifactId>camunda-message-streaming-parent</artifactId>
<version>0.6.7-SNAPSHOT</version>
<version>0.6.8-SNAPSHOT</version>
<relativePath>..</relativePath> <!-- lookup parent from repository -->
</parent>

<artifactId>webapp</artifactId>
<version>0.6.7-SNAPSHOT</version>
<version>0.6.8-SNAPSHOT</version>
<name>webapp</name>
<description>Web application illustrating how to use the library</description>

Expand Down

0 comments on commit b89fc71

Please sign in to comment.