We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 491edd8 commit ed19ae0Copy full SHA for ed19ae0
src/LaunchDarkly/Impl/Integrations/CurlEventPublisher.php
@@ -80,7 +80,7 @@ private function createCurlArgs(string $payload): string
80
{
81
$scheme = $this->_ssl ? "https://" : "http://";
82
$args = " -X POST";
83
- $args.= " --connect-timeout " . $this->_connectTimeout;
+ $args.= " --max-time " . $this->_connectTimeout;
84
85
foreach ($this->_eventHeaders as $key => $value) {
86
if ($key == 'Authorization') {
0 commit comments