We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4107ad commit 873a824Copy full SHA for 873a824
src/Optimizely/Event/Dispatcher/DefaultEventDispatcher.php
@@ -50,6 +50,7 @@ public function dispatchEvent(LogEvent $event)
50
'connect_timeout' => DefaultEventDispatcher::TIMEOUT
51
];
52
53
- $this->httpClient->requestAsync($event->getHttpVerb(), $event->getUrl(), $options);
+ $this->httpClient->requestAsync($event->getHttpVerb(), $event->getUrl(), $options)
54
+ ->then(fn($response) => $response);
55
}
56
0 commit comments