Skip to content

Commit

Permalink
update dependencies, fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jeking3 committed Jan 9, 2022
1 parent 3d90518 commit e10c463
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 42 deletions.
2 changes: 1 addition & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ exclude_lines =
# https://github.com/nedbat/coveragepy/issues/831#issuecomment-517778185
if TYPE_CHECKING:

# Unexpected conditions that are exceeding difficult to cover
# Unexpected conditions that are exceedingly difficult to cover
NotImplementedError

# Future, if needed:
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,10 @@ There is one module for each service. Each API call for a service that has post
has an identically named function with a decorator. This package also extends the event
data carried through such that the original call parameters and client are available.

Each post-condition method should guarantee visibility of the API that was calledr. For
Never call the original API from the post-condition function (unless you like infinite
recursion)!

Each post-condition method should guarantee visibility of the API that was called. For
example when something is deleted, the function should attempt to get that resource
and raise a `PostConditionNotSatisfiedError` if it is still there. The framework will
then enter a retry loop, calling the function again after an increasing delay.
Expand Down
79 changes: 39 additions & 40 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e10c463

Please sign in to comment.