fix(node): fix unexpected extra equals sign in HTTP params (#23474)

This commit is contained in:
ghmark675
2025-08-07 09:04:09 +08:00
committed by GitHub
parent c95761f4e6
commit ad61b42494
2 changed files with 7 additions and 6 deletions

View File

@@ -91,7 +91,7 @@ class Executor:
self.auth = node_data.authorization
self.timeout = timeout
self.ssl_verify = node_data.ssl_verify
self.params = []
self.params = None
self.headers = {}
self.content = None
self.files = None
@@ -139,7 +139,8 @@ class Executor:
(self.variable_pool.convert_template(key).text, self.variable_pool.convert_template(value_str).text)
)
self.params = result
if result:
self.params = result
def _init_headers(self):
"""