fix(node): fix unexpected extra equals sign in HTTP params (#23474)
This commit is contained in:
parent
c95761f4e6
commit
ad61b42494
2 changed files with 7 additions and 6 deletions
|
|
@ -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):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue