Skip to content

Commit

Permalink
Merge pull request #135 from prooph/bugfix
Browse files Browse the repository at this point in the history
fix OPTION_LOCK_TIMEOUT_MS in PostgresProjectionManager
  • Loading branch information
codeliner committed Mar 13, 2018
2 parents fd3dd18 + 7c97b1d commit 9ba7ed3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Projection/PostgresProjectionManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function createProjection(
$name,
$this->eventStreamsTable,
$this->projectionsTable,
$options[PdoEventStoreProjector::DEFAULT_LOCK_TIMEOUT_MS] ?? PdoEventStoreProjector::DEFAULT_LOCK_TIMEOUT_MS,
$options[PdoEventStoreProjector::OPTION_LOCK_TIMEOUT_MS] ?? PdoEventStoreProjector::DEFAULT_LOCK_TIMEOUT_MS,
$options[PdoEventStoreProjector::OPTION_CACHE_SIZE] ?? PdoEventStoreProjector::DEFAULT_CACHE_SIZE,
$options[PdoEventStoreProjector::OPTION_PERSIST_BLOCK_SIZE] ?? PdoEventStoreProjector::DEFAULT_PERSIST_BLOCK_SIZE,
$options[PdoEventStoreProjector::OPTION_SLEEP] ?? PdoEventStoreProjector::DEFAULT_SLEEP,
Expand Down

0 comments on commit 9ba7ed3

Please sign in to comment.