{
"Exception": "Exception",
"Message": "",
"Code": 0,
"Trace": [
{
"file": "/var/www/nextcloud/apps/files_lock/lib/Cron/Unlock.php",
"line": 32,
"function": "getDeprecatedLocks",
"class": "OCA\\FilesLock\\Service\\LockService",
"type": "->"
},
{
"file": "/var/www/nextcloud/apps/files_lock/lib/Cron/Unlock.php",
"line": 28,
"function": "deleteExpiredLocks",
"class": "OCA\\FilesLock\\Cron\\Unlock",
"type": "->"
},
{
"file": "/var/www/nextcloud/lib/public/BackgroundJob/Job.php",
"line": 61,
"function": "run",
"class": "OCA\\FilesLock\\Cron\\Unlock",
"type": "->"
},
{
"file": "/var/www/nextcloud/lib/public/BackgroundJob/TimedJob.php",
"line": 97,
"function": "start",
"class": "OCP\\BackgroundJob\\Job",
"type": "->"
},
{
"file": "/var/www/nextcloud/lib/public/BackgroundJob/TimedJob.php",
"line": 84,
"function": "start",
"class": "OCP\\BackgroundJob\\TimedJob",
"type": "->"
},
{
"file": "/var/www/nextcloud/cron.php",
"line": 175,
"function": "execute",
"class": "OCP\\BackgroundJob\\TimedJob",
"type": "->"
}
],
"File": "/var/www/nextcloud/apps/files_lock/lib/Service/LockService.php",
"Line": 296,
"message": "ConfigService::LOCK_TIMEOUT is not numerical, using default",
"current": 0,
"exception": {},
"CustomMessage": "ConfigService::LOCK_TIMEOUT is not numerical, using default"
}
Which also does not make sense to me (maybe I am missing something), as the code in
already retrieves the default as well, and since it is 0, we still use it? At least 0 seems to be still expected somehow.
Feel free to close, just noticed it while logging through the logs.
How to use GitHub
Running on 32.0.3, I see the following logs:
I am wondering if this does serve a purpose, as the default value is 0?
The log is coming from
files_lock/lib/Service/LockService.php
Lines 293 to 299 in 8145771
Which also does not make sense to me (maybe I am missing something), as the code in
files_lock/lib/Service/ConfigService.php
Lines 67 to 75 in 8145771
already retrieves the default as well, and since it is 0, we still use it? At least 0 seems to be still expected somehow.
Feel free to close, just noticed it while logging through the logs.