Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions system/Session/Handlers/MemcachedHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,8 @@ public function close(): bool
if (isset($this->memcached)) {
if (isset($this->lockKey)) {
$this->memcached->delete($this->lockKey);
$this->lockKey = null;
$this->lock = false;
}

return true;
Expand Down
5 changes: 4 additions & 1 deletion system/Session/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,10 @@ protected function startSession()
return;
}

session_start(); // @codeCoverageIgnore
// Error suppression is used to prevent warnings when
// concurrent requests cause session lock conflicts.
// This is a known PHP limitation with custom session handlers.
@session_start(); // @codeCoverageIgnore
}

/**
Expand Down