From c5af79543457268d02c5be02993cd5b9c763a50c Mon Sep 17 00:00:00 2001 From: Tim Conley Date: Fri, 5 Sep 2025 16:00:20 -0700 Subject: [PATCH] Fix openai plugin bug --- temporalio/contrib/openai_agents/_temporal_openai_agents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/temporalio/contrib/openai_agents/_temporal_openai_agents.py b/temporalio/contrib/openai_agents/_temporal_openai_agents.py index 0c698aa98..f553725cf 100644 --- a/temporalio/contrib/openai_agents/_temporal_openai_agents.py +++ b/temporalio/contrib/openai_agents/_temporal_openai_agents.py @@ -313,7 +313,7 @@ def configure_replayer(self, config: ReplayerConfig) -> ReplayerConfig: config["data_converter"] = DataConverter( payload_converter_class=_OpenAIPayloadConverter ) - return config + return self.next_worker_plugin.configure_replayer(config) @asynccontextmanager async def run_replayer(