Skip to content

Commit

Permalink
fixed entity-id format in built DittoHeaders of AcknowledgementAggreg…
Browse files Browse the repository at this point in the history
…atorActor on timeout exceptions

Signed-off-by: Thomas Jaeckle <thomas.jaeckle@bosch.io>
  • Loading branch information
thjaeckle committed Jun 29, 2022
1 parent 06e56c0 commit 9ea1d85
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -127,7 +127,7 @@ private static DittoHeaders calculateHeadersWithEntityId(@Nullable final EntityI
if (null != entityId) {
return withDittoHeaders.getDittoHeaders()
.toBuilder()
.putHeader(DittoHeaderDefinition.ENTITY_ID.getKey(), entityId.toString())
.putHeader(DittoHeaderDefinition.ENTITY_ID.getKey(), entityId.getEntityType() + ":" + entityId)
.build();
} else {
return withDittoHeaders.getDittoHeaders();
Expand Down

0 comments on commit 9ea1d85

Please sign in to comment.