Skip to content

Commit b962be7

Browse files
authored
improv(idempotency): make getKey method protected on DynamoDBPersistenceLayer (#3783)
1 parent 56fa294 commit b962be7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/idempotency/src/persistence/DynamoDBPersistenceLayer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ class DynamoDBPersistenceLayer extends BasePersistenceLayer {
272272
*
273273
* @param idempotencyKey
274274
*/
275-
private getKey(idempotencyKey: string): Record<string, AttributeValue> {
275+
protected getKey(idempotencyKey: string): Record<string, AttributeValue> {
276276
if (this.sortKeyAttr) {
277277
return marshall({
278278
[this.keyAttr]: this.staticPkValue,

0 commit comments

Comments
 (0)