mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Merge pull request #1220 from paperless-ngx/bugfix-oserror-msg
Bugfix: Include the actual OSError string when a file can't be opened for consumption
This commit is contained in:
commit
da8246d8c3
@ -67,17 +67,19 @@ def _consume(filepath):
|
|||||||
|
|
||||||
read_try_count = 0
|
read_try_count = 0
|
||||||
file_open_ok = False
|
file_open_ok = False
|
||||||
|
os_error_str = None
|
||||||
|
|
||||||
while (read_try_count < os_error_retry_count) and not file_open_ok:
|
while (read_try_count < os_error_retry_count) and not file_open_ok:
|
||||||
try:
|
try:
|
||||||
with open(filepath, "rb"):
|
with open(filepath, "rb"):
|
||||||
file_open_ok = True
|
file_open_ok = True
|
||||||
except OSError:
|
except OSError as e:
|
||||||
read_try_count += 1
|
read_try_count += 1
|
||||||
|
os_error_str = str(e)
|
||||||
sleep(os_error_retry_wait)
|
sleep(os_error_retry_wait)
|
||||||
|
|
||||||
if read_try_count >= os_error_retry_count:
|
if read_try_count >= os_error_retry_count:
|
||||||
logger.warning(f"Not consuming file {filepath}: OS reports file as busy still")
|
logger.warning(f"Not consuming file {filepath}: OS reports {os_error_str}")
|
||||||
return
|
return
|
||||||
|
|
||||||
tag_ids = None
|
tag_ids = None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user