makes timeToLive and autoRelease configurable
* for example redis store as lock storage needs the autoRelease to be true
This commit is contained in:
parent
42bd77abb4
commit
759b50d2b0
2 changed files with 15 additions and 1 deletions
|
@ -31,6 +31,18 @@ class SessionLockRequestComponent implements ComponentInterface
|
|||
*/
|
||||
protected $lockFactory;
|
||||
|
||||
/**
|
||||
* @Flow\InjectConfiguration(package="DigiComp.FlowSessionLock", path="autoRelease")
|
||||
* @var bool
|
||||
*/
|
||||
protected bool $autoRelease;
|
||||
|
||||
/**
|
||||
* @Flow\InjectConfiguration(package="DigiComp.FlowSessionLock", path="timeToLive")
|
||||
* @var int
|
||||
*/
|
||||
protected int $timeToLive;
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
|
@ -50,7 +62,7 @@ class SessionLockRequestComponent implements ComponentInterface
|
|||
'session-' . $sessionIdentifier
|
||||
); //TODO: sessionIdentifier might be wrong, probably it should probably be storage identifier
|
||||
|
||||
$lock = $this->lockFactory->createLockFromKey($key, 300, false);
|
||||
$lock = $this->lockFactory->createLockFromKey($key, $this->timeToLive, $this->autoRelease);
|
||||
|
||||
$componentContext->setParameter(SessionLockRequestComponent::class, 'sessionLock', $lock);
|
||||
|
||||
|
|
|
@ -12,3 +12,5 @@ DigiComp:
|
|||
FlowSessionLock:
|
||||
lockStoreDir: '%FLOW_PATH_DATA%Temporary/Production/SessionLocks'
|
||||
readOnlyExpressions: []
|
||||
autoRelease: true
|
||||
timeToLive: 300
|
||||
|
|
Loading…
Reference in a new issue