Skip to content

Commit

Permalink
use app default event loop for websocket calls
Browse files Browse the repository at this point in the history
  • Loading branch information
petli-full committed Oct 11, 2023
1 parent 046c682 commit fcbe038
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Traits/Cluster/MakesWebsocketCalls.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Exception;
use Illuminate\Support\Str;
use Ratchet\Client\Connector as WebSocketConnector;
use React\EventLoop\Factory as ReactFactory;
use React\EventLoop\Loop as ReactLoop;
use React\Socket\Connector as ReactSocketConnector;

trait MakesWebsocketCalls
Expand Down Expand Up @@ -65,7 +65,7 @@ public function getWsClient(string $url): array
$options['tls']['local_pk'] = $this->sslKey;
}

$loop = ReactFactory::create();
$loop = ReactLoop::get();
$socketConnector = new ReactSocketConnector($loop, $options);
$wsConnector = new WebSocketConnector($loop, $socketConnector);

Expand Down

0 comments on commit fcbe038

Please sign in to comment.