We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a78e7e commit e64c15eCopy full SHA for e64c15e
temporalio/client.py
@@ -5059,7 +5059,10 @@ def __init__(
5059
self._workflow_run_id = workflow_run_id
5060
self._result_type = result_type
5061
self._known_outcome = known_outcome
5062
- self._data_converter = self._client.data_converter._with_context(
+
5063
+ @functools.cached_property
5064
+ def _data_converter(self) -> temporalio.converter.DataConverter:
5065
+ return self._client.data_converter._with_context(
5066
WorkflowSerializationContext(
5067
namespace=self._client.namespace,
5068
workflow_id=self.workflow_id,
0 commit comments