File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
libraries/src/AWS.Lambda.Powertools.Idempotency/Persistence Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ private string GetHashedIdempotencyKey(JsonDocument data)
290
290
node = JsonDocument . Parse ( result ) . RootElement ;
291
291
}
292
292
293
- if ( IsMissingIdemPotencyKey ( node ) )
293
+ if ( IsMissingIdempotencyKey ( node ) )
294
294
{
295
295
if ( _idempotencyOptions . ThrowOnNoIdempotencyKey )
296
296
{
@@ -308,7 +308,7 @@ private string GetHashedIdempotencyKey(JsonDocument data)
308
308
/// </summary>
309
309
/// <param name="data"></param>
310
310
/// <returns>True if the Idempotency key is missing</returns>
311
- private static bool IsMissingIdemPotencyKey ( JsonElement data )
311
+ private static bool IsMissingIdempotencyKey ( JsonElement data )
312
312
{
313
313
return data . ValueKind == JsonValueKind . Null || data . ValueKind == JsonValueKind . Undefined
314
314
|| ( data . ValueKind == JsonValueKind . String && data . ToString ( ) == string . Empty ) ;
You can’t perform that action at this time.
0 commit comments