diff options
| author | Dan Engelbrecht <[email protected]> | 2024-08-20 10:10:57 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-08-20 10:10:57 +0200 |
| commit | 3c84e70eb2bbba4d71caf1bee726cc36fdc5bf0e (patch) | |
| tree | 9513ff19c93e6a4c984e7c359d216c06df718dc7 | |
| parent | don't throw exception if sidecar file is missing (#126) (diff) | |
| download | zen-3c84e70eb2bbba4d71caf1bee726cc36fdc5bf0e.tar.xz zen-3c84e70eb2bbba4d71caf1bee726cc36fdc5bf0e.zip | |
demote project store access time read fail to warning (#127)
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | src/zenserver/projectstore/projectstore.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 79ff54b97..894be2fe2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## - Improvement: Log reasons for failing to read cache bucket sidecar file +- Improvement: If we fail to read access times for a project it now issues a warning instead of error - Bugfix: If we fail to get information on a cache chunk for a partial chunk request - treat it as a cache miss - Bugfix: Set last GC time when we skip GC due to low disk space to avoid spam-running GC - Bugfix: Make sure we lock project and verify directory exists before trying to iterate to find oplogs diff --git a/src/zenserver/projectstore/projectstore.cpp b/src/zenserver/projectstore/projectstore.cpp index 1454eab01..dd007c8b4 100644 --- a/src/zenserver/projectstore/projectstore.cpp +++ b/src/zenserver/projectstore/projectstore.cpp @@ -2157,7 +2157,7 @@ ProjectStore::Project::ReadAccessTimes() } else { - ZEN_ERROR("validation error {} hit for '{}'", int(ValidationError), ProjectAccessTimesFilePath); + ZEN_WARN("validation error {} hit for '{}'", int(ValidationError), ProjectAccessTimesFilePath); } } |