Skip to content

Commit c6ac825

Browse files
committed
fix: fix max_retries is hardcode
1 parent dd051b1 commit c6ac825

File tree

1 file changed

+1
-1
lines changed
  • api/dify_graph/nodes/http_request

1 file changed

+1
-1
lines changed

api/dify_graph/nodes/http_request/node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def _run(self) -> NodeRunResult:
101101
timeout=self._get_request_timeout(self.node_data),
102102
variable_pool=self.graph_runtime_state.variable_pool,
103103
http_request_config=self._http_request_config,
104-
max_retries=0,
104+
max_retries=self._http_request_config.ssrf_default_max_retries,
105105
ssl_verify=self.node_data.ssl_verify,
106106
http_client=self._http_client,
107107
file_manager=self._file_manager,

0 commit comments

Comments
 (0)