Столкнулся с ошибкой в модуле Url Redirect версии 8.x-3.0 при попытке обновить ядро сайта до версии Drupal 10.2.
Error: Call to undefined method Symfony\Component\HttpKernel\Event\ExceptionEvent::getException() in Drupal\url_redirect\EventSubscriber\RedirectSubscriber->exceptionRedirect() (line 116 of modules/contrib/url_redirect/src/EventSubscriber/RedirectSubscriber.php).
Ошибка не новая:
https://www.drupal.org/project/url_redirect/issues/3352036
Имеется патч:
https://www.drupal.org/files/issues/2023-04-04/url_redirect-deprecated-function.patch
Находим строки:
$exception = $event->getException(); if ($exception instanceof HttpExceptionInterface && $event->getException()
Меняем их на:
$exception = $event->getThrowable(); if ($exception instanceof HttpExceptionInterface && $event->getThrowable()
Готово.