We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9bce39 commit 410bcceCopy full SHA for 410bcce
src/Symfony/Component/Messenger/Bridge/Doctrine/Transport/Connection.php
@@ -161,6 +161,10 @@ public function get(): ?array
161
$this->driverConnection->delete($this->configuration['table_name'], ['delivered_at' => '9999-12-31 23:59:59']);
162
} catch (DriverException $e) {
163
// Ignore the exception
164
+ } catch (TableNotFoundException $e) {
165
+ if ($this->autoSetup) {
166
+ $this->setup();
167
+ }
168
}
169
170
0 commit comments