mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-20 05:11:31 +00:00
better handle PDOExceptions during open transaction in feed update
This commit is contained in:
@@ -192,6 +192,13 @@ class RSSUtils {
|
|||||||
RSSUtils::update_rss_feed($tline["id"], true, false);
|
RSSUtils::update_rss_feed($tline["id"], true, false);
|
||||||
} catch (PDOException $e) {
|
} catch (PDOException $e) {
|
||||||
Logger::get()->log_error(E_USER_NOTICE, $e->getMessage(), $e->getFile(), $e->getLine(), $e->getTraceAsString());
|
Logger::get()->log_error(E_USER_NOTICE, $e->getMessage(), $e->getFile(), $e->getLine(), $e->getTraceAsString());
|
||||||
|
|
||||||
|
try {
|
||||||
|
$pdo->rollback();
|
||||||
|
} catch (PDOException $e) {
|
||||||
|
// it doesn't matter if there wasn't actually anything to rollback, PDO Exception can be
|
||||||
|
// thrown outside of an active transaction during feed update
|
||||||
|
}
|
||||||
}
|
}
|
||||||
_debug_suppress(false);
|
_debug_suppress(false);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user