mirror of
https://github.com/code-rhapsodie/dataflow-bundle.git
synced 2026-03-24 06:42:23 +01:00
Compare commits
2 Commits
job_retent
...
v2.0.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6c32b5bfcc | ||
|
|
806e5bb90f |
@@ -1,3 +1,11 @@
|
||||
# Version 2.0.2
|
||||
|
||||
* Fixed the connection proxy class created by the factory
|
||||
|
||||
# Version 2.0.1
|
||||
|
||||
* Fixed next execution time not increasing for scheduled dataflows
|
||||
|
||||
# Version 2.0.0
|
||||
|
||||
* Add Doctrine DBAL multi-connection support
|
||||
|
||||
@@ -83,6 +83,12 @@ class ScheduledDataflowManagerTest extends TestCase
|
||||
)
|
||||
;
|
||||
|
||||
$this->scheduledDataflowRepository
|
||||
->expects($this->once())
|
||||
->method('save')
|
||||
->with($scheduled2)
|
||||
;
|
||||
|
||||
$this->connection
|
||||
->expects($this->once())
|
||||
->method('commit')
|
||||
|
||||
@@ -67,6 +67,7 @@ class ScheduledDataflowManager implements ScheduledDataflowManagerInterface
|
||||
}
|
||||
|
||||
$scheduled->setNext($next);
|
||||
$this->scheduledDataflowRepository->save($scheduled);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -61,7 +61,7 @@ services:
|
||||
|
||||
coderhapsodie.dataflow.connection.internal:
|
||||
lazy: true
|
||||
class: Doctrine\DBAL\Driver\Connection
|
||||
class: Doctrine\DBAL\Connection
|
||||
factory: ['@CodeRhapsodie\DataflowBundle\Factory\ConnectionFactory', 'getConnection']
|
||||
|
||||
CodeRhapsodie\DataflowBundle\Factory\ConnectionFactory:
|
||||
|
||||
Reference in New Issue
Block a user