[HttpKernel] Catch exception when SQLite profiler storage fails to cleanup

This commit is contained in:
ornicar 2011-02-06 16:30:43 -08:00 committed by Fabien Potencier
parent ea4ab77b6d
commit 4252680ccf

View File

@ -94,11 +94,11 @@ class SQLiteProfilerStorage implements ProfilerStorageInterface
);
try {
$this->exec($db, 'INSERT INTO data (token, data, ip, url, time, created_at) VALUES (:token, :data, :ip, :url, :time, :created_at)', $args);
$this->cleanup();
$status = true;
} catch (\Exception $e) {
$status = false;
}
$this->cleanup();
$this->close($db);
return $status;