Skip to content

Commit 8d7c9f6

Browse files
committed
Ensure the journal doesn't delete the container lock file
1 parent d3b0473 commit 8d7c9f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DependencyInjection/Configurator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ private function journal(string $currentContainerClassName): void
191191
continue;
192192
}
193193
$fileName = $fileInfo->getFilename();
194-
if ($fileName === 'container.journal') {
194+
if ($fileName === 'container.journal' || $fileName === 'container.lock') {
195195
continue;
196196
}
197197
if (!str_ends_with($fileName, '.php')) {

0 commit comments

Comments
 (0)