mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
fix(file cache): acquire lock before writing (#3509)
This commit is contained in:
parent
8b996e3056
commit
91976f7d56
@ -41,9 +41,9 @@ class FileCache implements CacheInterface
|
|||||||
|
|
||||||
public function saveData($data): void
|
public function saveData($data): void
|
||||||
{
|
{
|
||||||
$writeStream = file_put_contents($this->getCacheFile(), serialize($data));
|
$bytes = file_put_contents($this->getCacheFile(), serialize($data), LOCK_EX);
|
||||||
if ($writeStream === false) {
|
if ($bytes === false) {
|
||||||
throw new \Exception('The cache path is not writeable. You probably want: chown www-data:www-data cache');
|
throw new \Exception(sprintf('Failed to write to: %s', $this->getCacheFile()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -77,6 +77,6 @@ final class Logger
|
|||||||
|
|
||||||
// Log to file
|
// Log to file
|
||||||
// todo: extract to log handler
|
// todo: extract to log handler
|
||||||
//file_put_contents('/tmp/rss-bridge.log', $text, FILE_APPEND);
|
// file_put_contents('/tmp/rss-bridge.log', $text, FILE_APPEND | LOCK_EX);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user