Changes between Initial Version and Version 1 of Ticket #2880, comment 2
- Timestamp:
- 2017-09-27T17:19:13Z (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2880, comment 2
initial v1 1 So what's happening is that when we upload a file, we don't set ` `last_downloaded_uri`` in the local metadata. So then when we do a re-scan (at the next startup) we decide to download based on this missing URI. Every time a file is downloaded (and already exists locally) we make a .backup1 So what's happening is that when we upload a file, we don't set `last_downloaded_uri` in the local metadata. So then when we do a re-scan (at the next startup) we decide to download based on this missing URI. Every time a file is downloaded (and already exists locally) we make a .backup 2 2 3 The right fix is to set ` `last_downloaded_uri`` upon upload, I believe -- thus we won't re-download the file on the next startup.3 The right fix is to set `last_downloaded_uri` upon upload, I believe -- thus we won't re-download the file on the next startup. 4 4 5 5 (Note this only happens *once* per new file we upload, not every startup).