Skip to content

Commit 27c3b3d

Browse files
committed
Fix context & other objects being shared between executions when using Messenger.
1 parent b154452 commit 27c3b3d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
# 1.0.3
2+
- :wrench: Fix context & other objects being shared between executions when using Messenger.
3+
14
# 1.0.2
2-
- :wrench: Fix incase of failire etl execution being duplicated and loosing logs and files.
5+
- :wrench: Fix incase of failure etl execution being duplicated and loosing logs and files.
36

47
# 1.0.1
58
- :wrench: Fix etl execution not reloaded from database at end of process. This is necessary if the doctrine memory is flushed in the etl process.

DependencyInjection/Compiler/ChainCompiler.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ public function process(ContainerBuilder $container)
3030

3131
// Using public for performance. We should use lazy loading later on which would give same performance.
3232
$chainDefinition->setPublic(true);
33+
$chainDefinition->setShared(false);
3334
}
3435

3536
$chainProcessorManager->setArgument('$definitions', $chainsString);

0 commit comments

Comments
 (0)