You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powertools-idempotency/src/main/java/software/amazon/lambda/powertools/idempotency/internal/IdempotencyHandler.java
thrownewIdempotencyPersistenceLayerException("Failed to save in progress record to idempotency store", e);
87
+
thrownewIdempotencyPersistenceLayerException("Failed to save in progress record to idempotency store. If you believe this is a powertools bug, please open an issue.", e);
thrownewIdempotencyPersistenceLayerException("Failed to get record from idempotency store", e);
107
+
thrownewIdempotencyPersistenceLayerException("Failed to get record from idempotency store. If you believe this is a powertools bug, please open an issue.", e);
thrownewIdempotencyPersistenceLayerException("Failed to delete record from idempotency store", e);
148
+
thrownewIdempotencyPersistenceLayerException("Failed to delete record from idempotency store. If you believe this is a powertools bug, please open an issue.", e);
thrownewIdempotencyPersistenceLayerException("Failed to update record state to success in idempotency store", e);
156
+
thrownewIdempotencyPersistenceLayerException("Failed to update record state to success in idempotency store. If you believe this is a powertools bug, please open an issue.", e);
Copy file name to clipboardExpand all lines: powertools-idempotency/src/main/java/software/amazon/lambda/powertools/idempotency/persistence/BasePersistenceStore.java
Copy file name to clipboardExpand all lines: powertools-idempotency/src/main/java/software/amazon/lambda/powertools/idempotency/persistence/DynamoDBPersistenceStore.java
Copy file name to clipboardExpand all lines: powertools-idempotency/src/test/java/software/amazon/lambda/powertools/idempotency/internal/IdempotencyAspectTest.java
+1-2
Original file line number
Diff line number
Diff line change
@@ -205,8 +205,7 @@ public void idempotencyOnSubMethodAnnotated_firstCall_shouldPutInStore() {
0 commit comments