File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 11from __future__ import annotations
22
3- import logging
43import functools
4+ import logging
55from collections .abc import Callable
66from typing import Any
77
1717 "wrap_subscribe_broadcast" ,
1818]
1919
20- logger = logging .getLogger (' workflows.recipe' )
20+ logger = logging .getLogger (" workflows.recipe" )
2121
2222
2323def _wrap_subscription (
@@ -79,8 +79,10 @@ def unwrap_recipe(header, message):
7979 # "First 1000 characters of header:\n%s\n" + \
8080 # "First 1000 characters of message:\n%s",
8181 # str(header)[:1000], str(message)[:1000])
82- logger .error ("The input to this service is not a wrapped recipe. " \
83- "Unable to process incoming message." )
82+ logger .error (
83+ "The input to this service is not a wrapped recipe. "
84+ "Unable to process incoming message."
85+ )
8486 transport_layer .nack (header )
8587
8688 if mangle_for_receiving :
You can’t perform that action at this time.
0 commit comments