Skip to content

Commit

Permalink
Comment ProcessMonitor addExceptionTraceData for now as it can cause …
Browse files Browse the repository at this point in the history
…memory issue on Clever
  • Loading branch information
mathieu-ducrot committed Apr 25, 2024
1 parent e1ab3c6 commit b3f9742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Monitoring/ProcessMonitor.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function logException(\Exception $e): void
{
$message = $e->getMessage();
$this->process?->setSummary($message);
$this->process?->addExceptionTraceData($e);
// $this->process?->addExceptionTraceData($e); cause memomry limit issue on clever, try to catch the exception with sentry instead
$this->consoleIo?->error($message);
}

Expand Down

0 comments on commit b3f9742

Please sign in to comment.