Irreversible Local Additions in newly added RO folders

I have encountered this problem quite a few times. This only seems to happen when accepting new folders, and only when they are set to Receive Only.

Basically, after adding a folder and allowing it to download everything, the state is as follows.

Screenshots

“Revert Local Changes” does not work.

Reverting folder 0x9b4180
Revert: directory has been deleted on a remote device but is not empty; the contents are probably ignored on that remote device, but not locally

Now, this what I have found out and also what I am suspecting.

  1. Changing the folder type to SR and then back to RO fixes the problem. Why it does so, I have no idea.

  2. Clearing ignore patterns on the receiving side does not help.

  3. I have the following ignore patterns in the folder on the sending side, which I think may cause this behaviour.

    !folder/file1
    !folder/file2
    folder
    

    The folder matches the actual folders listed in the “Local Additions”. However, I would still need to reproduce this behaviour in a clean installation to have hard proof though. Still, if this is really the culprit, then why would changing the folder type back and forth make any difference? Perhaps because files inside folder on the sending side have changed while the folder is being downloaded? Just throwing out some ideas…

What do you think about what is going on here?

A receive only folder only receives data from somewhere else. A newly created folder is by definition empty. Any files subsequently discovered are files that shouldn’t be there.

Or, more practically, never create an RO folder with pre existing data. Create it as SR and then maybe switch the mode.

The thing is that in this case the RO folders are indeed created empty (but with full .stignore, which is same as on the sending side), and still end in this state. The workaround is to set them to SR, and then change to RO again. After doing so, there are no Local Additions anymore. I am curious why this is happening though.

Aha. Then it’s something else, sorry. My bad.

Yeah, and I have failed to reproduce the behaviour in my test installation so far.

  1. Create a folder on Device A with the following structure.
    folder
       file1
       file2
    
  2. Create ignore patterns as follows.
    !folder/file1
    folder
    
  3. Share the folder with Device B.
  4. Accept the folder on Device B as RO with the same ignore patterns as above.

Unfortunately (?), in the test installation the folder does get synced properly with no “Local Additions”, which is not the case with my real folders.

As I wrote above, I have a feeling that the culprit are new changes inside the ignored folder that take place while the synchronisation is going on, which then manifest themselves in “Local Additions”, especially since the listed additions themselves are only the ignored folders, and no actual files.

Sounds like a possibility. I would also be unsurprised if the ignored-folder-with-unignored-children pattern didn’t cooperate wonderfully with receive only folders, since it kind of depends on the receiving side creating and managing the otherwise ignored middle level folder itself. Which it’s forbidden from doing by way of being receive only and such.

image

(Actual footage of Syncthing code resolving the conflict.)

6 Likes

I understand :wink:. I still need the patterns though, as tons of other files get created in those folders, but I need to sync only a few of them. Fortunately, once the first Local Additions get solved by switching the folder type to SR and back to RO, the future synchronisation seems to work fine.

Does this make any difference?

!folder/file1
folder/**

In theory it should promote folder to something normal instead of being a ghost folder.

I think that it does :clap:.

I have removed and re-added the same folder under a different location with exactly the same settings, and this time it synced without any local additions.

Just for the record, the actual patterns are a little bit more complex than the sample given above.

Before (local additions):

!folder1*/folder2/folder3
!folder1*/folder2/*/folder4
folder1*/folder2

After (no local additions):

!folder1*/folder2/folder3
!folder1*/folder2/*/folder4
folder1*/folder2/**

What is interesting though is that even with those “local additions”, the folders themselves were still synced properly.

Just one last question, will there be any difference between using folder1*/folder2/** and folder1*/folder2/* in this case? Or perhaps even folder1*/folder2/?

There’s a mechanism in place, that should ensure that parents of un-ignored items are not getting ignored, but added like a normal directory. Would be very nice have a reproducer to find out where that fails.

No, they are equivalent.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.