Skip to content

Commit

Permalink
chore: tiny cosmetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Dec 6, 2024
1 parent 3776106 commit d7db5dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/appier_extras/parts/admin/models/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,9 @@ def notify_http(self, arguments={}):
retries = arguments.get("retries", 3)
logger = appier.get_logger()
logger.debug("Running HTTP notification for '%s' ..." % url)
return cls._retry(lambda: appier.post(url, timeout=timeout, data_j=arguments), count=retries)
return cls._retry(
lambda: appier.post(url, data_j=arguments, timeout=timeout), count=retries
)

def notify_mailme(self, arguments={}):
cls = self.__class__
Expand Down

0 comments on commit d7db5dd

Please sign in to comment.