Move the last storage_inconsistency files from logs folder to var logs folder - codalab/codabench GitHub Wiki
The wiki has moved !
This wiki is no longer maintained. Please go to the new link for an updated wiki : https://docs.codabench.org
This intervention is needed when upgrading from a version equal or lower than v1.11.0
You will need to move the last storage_inconsistency files from /logs folder to /var/logs/ folder.
cd codabench
cp -r logs/* var/logs
You will also need to rebuild the celery image because of a version change that's needed.
docker compose down
docker images # Take the ID of the celery image
docker rmi *celery_image_id*
docker compose up -d
More information here