Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
joedixon committed Dec 29, 2023
1 parent 40967cc commit 6a73c34
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Servers/ApiGateway/Jobs/SendToConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ public function __construct(public string $connectionId, public string $message)
*/
public function handle(): void
{
info('Sending message to connection.', [
'connectionId' => $this->connectionId,
'message' => $this->message,
]);

try {
$client = new ApiGatewayManagementApiClient([
'region' => Config::get('reverb.servers.api_gateway.region'),
Expand Down

0 comments on commit 6a73c34

Please sign in to comment.