Skip to content

Commit 852ff2f

Browse files
authored
Keep extra log attributes (#280)
Fixes #276
1 parent 2ce6d9f commit 852ff2f

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

temporalio/activity.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,6 @@ def process(
363363
self, msg: Any, kwargs: MutableMapping[str, Any]
364364
) -> Tuple[Any, MutableMapping[str, Any]]:
365365
"""Override to add activity details."""
366-
msg, kwargs = super().process(msg, kwargs)
367366
if self.activity_info_on_message or self.activity_info_on_extra:
368367
context = _current_context.get(None)
369368
if context:

temporalio/workflow.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,6 @@ def process(
831831
self, msg: Any, kwargs: MutableMapping[str, Any]
832832
) -> Tuple[Any, MutableMapping[str, Any]]:
833833
"""Override to add workflow details."""
834-
msg, kwargs = super().process(msg, kwargs)
835834
if self.workflow_info_on_message or self.workflow_info_on_extra:
836835
runtime = _Runtime.maybe_current()
837836
if runtime:

0 commit comments

Comments
 (0)