From 329b57b31cd600bdf4b85c58feb95f272b93b90c Mon Sep 17 00:00:00 2001 From: matt cameron Date: Thu, 14 Nov 2024 23:41:07 +1100 Subject: [PATCH] Add dot notation to URL on HTML fetcher plugin (#883) #882 --- .../process_engine/action/v1/connectors/html/fetch/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracardi/process_engine/action/v1/connectors/html/fetch/plugin.py b/tracardi/process_engine/action/v1/connectors/html/fetch/plugin.py index 870feb99..73d900ef 100644 --- a/tracardi/process_engine/action/v1/connectors/html/fetch/plugin.py +++ b/tracardi/process_engine/action/v1/connectors/html/fetch/plugin.py @@ -55,7 +55,7 @@ async def run(self, payload: dict, in_edge=None) -> Result: async with client.request( method=self.config.method, - url=str(self.config.url), + url=str(dot[self.config.url]), headers=headers, cookies=cookies, ssl=self.config.ssl_check,