Skip to content

Commit 6432299

Browse files
committed
remove window escape
1 parent 22d80be commit 6432299

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LaunchDarkly/Impl/Integrations/CurlEventPublisher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ private function createPowershellArgs(string $payloadFile): string
116116
$args.= " -Method POST";
117117
$args.= " -UseBasicParsing";
118118
$args.= " -InFile $payloadFile";
119-
$args.= " -H " . escapeshellarg("@{" . $headerString . "}");
119+
$args.= " -H @{" . $headerString . "}";
120120
$args.= " -Uri " . escapeshellarg($scheme . $this->_host . ":" . $this->_port . $this->_path . "/bulk");
121121
$args.= " ; Remove-Item $payloadFile";
122122

0 commit comments

Comments
 (0)