Skip to content

Commit

Permalink
Fix bug in combine that prevented correct storing of idempotency key …
Browse files Browse the repository at this point in the history
…in idempotency table
  • Loading branch information
slinkydeveloper committed Jul 18, 2024
1 parent 5240e61 commit 1d2577f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/types/src/identifiers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ impl IdempotencyId {
idempotency_key: ByteString,
) -> Self {
IdempotencyId {
service_name: invocation_target.handler_name().clone(),
service_name: invocation_target.service_name().clone(),
service_key: invocation_target.key().map(|bs| bs.as_bytes().clone()),
service_handler: invocation_target.handler_name().clone(),
idempotency_key,
Expand Down

0 comments on commit 1d2577f

Please sign in to comment.