diff --git a/inngest/_internal/comm.py b/inngest/_internal/comm.py index 36433c28..cc188932 100644 --- a/inngest/_internal/comm.py +++ b/inngest/_internal/comm.py @@ -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) @@ -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( diff --git a/inngest/_internal/net.py b/inngest/_internal/net.py index 265a2a87..93600ffd 100644 --- a/inngest/_internal/net.py +++ b/inngest/_internal/net.py @@ -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: