-
Hey! We're using the onedrive client to sync an export of a confluence space to our business onedrive. As it is an export that is generated every night, the timestamps of the files differ obviously. Now, onedrive seems to think that these files have actually changed and uploads nearly all of them every night (I wonder why only nearly all of them and not ALL of them). I guess that is because of the different timestamps. Can this be disabled so that the sync only checks for actual changes in the content? Thanks in advance Kind regards |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Please review the client architecture documentation: https://github.com/abraunegg/onedrive/blob/master/docs/client-architecture.md The client does 2 passes:
The timestamp is used first, as this is computationally less intensive. If the timestamp is different, the hash is checked. If the hash is indeed different, action is taken. If the has is the same, the offending timestamp is attempted to be corrected and zero transfer is done. Please also ensure you are using v2.5.3 or above as there are many fixes for file comparison between v2.4.25 and v2.5.x codebase. |
Beta Was this translation helpful? Give feedback.
@dploeger
Please review the client architecture documentation: https://github.com/abraunegg/onedrive/blob/master/docs/client-architecture.md
The client does 2 passes:
The timestamp is used first, as this is computationally less intensive.
If the timestamp is different, the hash is checked. If the hash is indeed different, action is taken.
If the has is the same, the offending timestamp is attempted to be corrected and zero transfer is done.
Reference: https://github.com/abraunegg/onedrive/blob/master/docs/client-architecture.md#determ…