1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-07 02:58:54 +00:00

append request headers instead of replacing (#37845)

This commit is contained in:
Nate 2018-03-25 14:35:41 -05:00 committed by Jordan Borean
parent d502745a4e
commit 2c44061a04
2 changed files with 22 additions and 1 deletions

View file

@ -125,7 +125,7 @@ if ($headers) {
default { $req_headers.Add($header.Name, $header.Value) }
}
}
$client.Headers = $req_headers
$client.Headers.Add($req_headers)
}
if ($client_cert) {