Skip to content

Commit

Permalink
Merge pull request #94 from buggregator/hotfix/93
Browse files Browse the repository at this point in the history
Fixes a problem with merging incoming ray events
  • Loading branch information
butschster committed Nov 18, 2023
2 parents 511df49 + af95907 commit ca61625
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions app/modules/Ray/Application/Handlers/MergeEventsHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ public function handle(array $event): array
...($storedEvent->getPayload()->jsonSerialize()['payloads'] ?? []),
...($event['payloads'] ?? [])
];
} catch (EntityNotFoundException) {
}
} catch (EntityNotFoundException) {}

return $event;
}
Expand Down
2 changes: 1 addition & 1 deletion app/modules/Ray/Interfaces/Http/Handler/EventHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use App\Application\Domain\ValueObjects\Uuid;
use App\Application\Service\HttpHandler\HandlerInterface;
use Carbon\CarbonInterval;
use Modules\Profiler\Application\EventHandlerInterface;
use Modules\Ray\Application\EventHandlerInterface;
use Modules\Ray\Application\TypeEnum;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
Expand Down

0 comments on commit ca61625

Please sign in to comment.