-
Notifications
You must be signed in to change notification settings - Fork 433
fix(idempotency): POWERTOOLS_IDEMPOTENCY_DISABLED should respect truthy values #4391
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
heitorlessa
merged 11 commits into
aws-powertools:develop
from
stevenhoelscher:fix/idempotency-disabled
Jun 4, 2024
Merged
Changes from 7 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
2515093
fix: POWERTOOLS_IDEMPOTENCY_DISABLED should respect truthy values
44c1943
Adding more tests
leandrodamascena 1ee0a36
Addressing Heitor's feedback
leandrodamascena bf0b884
Merge branch 'develop' into fix/idempotency-disabled
leandrodamascena b9ee5be
Merge branch 'develop' into fix/idempotency-disabled
leandrodamascena eb67c59
Moving exception files
leandrodamascena 058fbb9
Typo
leandrodamascena 896cd83
Merge branch 'develop' into fix/idempotency-disabled
leandrodamascena a0f12c9
Addressing Heitor's feedback
leandrodamascena a88f920
Addressing Heitor's feedback
leandrodamascena ffe8e00
Addressing Heitor's feedback
leandrodamascena File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
"""Shared warnings that don't belong to a single utility""" | ||
|
||
|
||
class PowertoolsWarning(UserWarning): | ||
leandrodamascena marked this conversation as resolved.
Show resolved
Hide resolved
|
||
""" | ||
This class provides a custom Warning tailored for better clarity when certain situations occur. | ||
leandrodamascena marked this conversation as resolved.
Show resolved
Hide resolved
|
||
It offers more informative and relevant warning messages, allowing customers to easily suppress | ||
or handle this specific warning type as needed. | ||
|
||
Parameters | ||
---------- | ||
message: str | ||
The warning message to be displayed. | ||
""" | ||
|
||
def __init__(self, message): | ||
self.message = message | ||
super().__init__(message) | ||
|
||
def __str__(self): | ||
return self.message |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.