Skip to content

Commit 188b5b7

Browse files
authored
improv(idempotency): mark getHashedIdempotencyKey() method as protected (#3552)
1 parent 11909ae commit 188b5b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: packages/idempotency/src/persistence/BasePersistenceLayer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ abstract class BasePersistenceLayer implements BasePersistenceLayerInterface {
279279
* @param data the data payload that will be hashed to create the hash portion of the idempotency key
280280
* @returns the idempotency key
281281
*/
282-
private getHashedIdempotencyKey(data: JSONValue): string {
282+
protected getHashedIdempotencyKey(data: JSONValue): string {
283283
const payload = this.eventKeyJmesPath
284284
? (search(
285285
this.eventKeyJmesPath,

0 commit comments

Comments
 (0)