fix: invalid http header

This commit is contained in:
Yeuoly 2024-03-19 18:12:50 +08:00
parent 17b7426cc6
commit 55d2417906
No known key found for this signature in database
GPG Key ID: A66E7E320FB19F61
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ class HttpExecutor:
else:
raise ValueError(f'Invalid headers {kv}')
self.headers[k] = v
self.headers[k.strip()] = v.strip()
# extract all template in body
if node_data.body: