nextcloud / updater

:arrows_counterclockwise: The updater app to keep your Nextcloud up-to-date
GNU Affero General Public License v3.0
45 stars 33 forks source link

Move new files in place: Could not rename ... #276

Open STaRDoGG opened 4 years ago

STaRDoGG commented 4 years ago

The last 2 times I've used the updater I've been getting stuck here:

image

I have to manually click the "Retry" button like 16 million times and it completes, apparently fine, and checking the version when it's done shows it's the latest version. Any solution to this? I'm getting carpal tunnel in my right index finger. :p

I'm using the containerized version:

   nextcloud:
        # https://hub.docker.com/r/linuxserver/nextcloud
        image: linuxserver/nextcloud:latest
        container_name: nextcloud
        hostname: nextcloud
        environment:
          - TZ='America/Chicago'
        volumes:
          - "scotts_nextcloud:/config" # Nextcloud Configs
          - "/i/Nextcloud:/data"       # Storage area
        restart: unless-stopped
        networks:
          - ocs
          - odb
joshtrichards commented 1 year ago

We should probably adapt the cleaner rename handling from server for the updater app:

https://github.com/nextcloud/server/blob/79d24bfb8eebd82dd75b15c5503a4bb33563ee69/lib/private/Files/Storage/Local.php#L363

And possibly: nextcloud/server#38623