We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22d80be commit 6432299Copy full SHA for 6432299
src/LaunchDarkly/Impl/Integrations/CurlEventPublisher.php
@@ -116,7 +116,7 @@ private function createPowershellArgs(string $payloadFile): string
116
$args.= " -Method POST";
117
$args.= " -UseBasicParsing";
118
$args.= " -InFile $payloadFile";
119
- $args.= " -H " . escapeshellarg("@{" . $headerString . "}");
+ $args.= " -H @{" . $headerString . "}";
120
$args.= " -Uri " . escapeshellarg($scheme . $this->_host . ":" . $this->_port . $this->_path . "/bulk");
121
$args.= " ; Remove-Item $payloadFile";
122
0 commit comments