Skip to content

Commit

Permalink
Delete prints
Browse files Browse the repository at this point in the history
  • Loading branch information
amh4r committed Oct 30, 2023
1 parent 443c728 commit ed169b9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions inngest/_internal/comm.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ async def call_function(
"""
Handles a function call from the Executor.
"""
print("call_function")

try:
req_sig.validate(self._signing_key)
Expand All @@ -170,7 +169,6 @@ async def call_function(
await fn.call(call, self._client, fn_id)
)
except errors.InternalError as err:
print(err)
return CommResponse.from_internal_error(err, self._framework)

def call_function_sync(
Expand Down
1 change: 0 additions & 1 deletion inngest/_internal/net.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ def __init__(
) -> None:
self._body = body
self._is_production = is_production
print(dict(headers.items()))

sig_header = headers.get(const.HeaderKey.SIGNATURE.value)
if sig_header is not None:
Expand Down

0 comments on commit ed169b9

Please sign in to comment.