I was able to connect storage to S3. However, downloading does not work as the download routine appears to be looking for a local file:
[2023-10-17 21:21:03,975: ERROR/ForkPoolWorker-2] Task mayan.apps.document_downloads.tasks.task_document_file_compress[2bb7525e-85be-404b-b373-5e9bcb4d1444] raised unexpected: FileNotFoundError(2, 'No such file or directory')
Traceback (most recent call last):
File "/opt/mayan-edms/lib/python3.11/site-packages/celery/app/trace.py", line 477, in trace_task
R = retval = fun(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^
File "/opt/mayan-edms/lib/python3.11/site-packages/celery/app/trace.py", line 760, in __protected_call__
return self.run(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/mayan-edms/lib/python3.11/site-packages/mayan/apps/document_downloads/tasks.py", line 30, in task_document_file_compress
document_version_exporter.compress_to_download_file(
File "/opt/mayan-edms/lib/python3.11/site-packages/mayan/apps/document_downloads/classes.py", line 59, in compress_to_download_file
self.compress(
File "/opt/mayan-edms/lib/python3.11/site-packages/mayan/apps/document_downloads/classes.py", line 28, in compress
archive.write(
File "/usr/lib/python3.11/zipfile.py", line 1771, in write
zinfo = ZipInfo.from_file(filename, arcname,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/zipfile.py", line 528, in from_file
st = os.stat(filename)
^^^^^^^^^^^^^^^^^