]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Fix version incrementation bug
authorDavid Stainton <dstainton415@gmail.com>
Sat, 12 Sep 2015 18:09:55 +0000 (20:09 +0200)
committerDavid Stainton <dstainton415@gmail.com>
Sat, 12 Sep 2015 18:09:55 +0000 (20:09 +0200)
only increment if mtimes are differing...

src/allmydata/frontends/magic_folder.py

index 479884047165668b3855626586f21cf916ad170d..417f8c359574011d62d403c4bed09f1cccad9447 100644 (file)
@@ -346,7 +346,11 @@ class Uploader(QueueMixin):
                 if version is None:
                     version = 0
                 else:
-                    version += 1
+                    if self._db.is_new_file_time(os.path.join(self._local_path_u, relpath_u), relpath_u):
+                        version += 1
+                        print "version incremented to %s" % (version,)
+                    else:
+                        print "version not incremented"
 
                 uploadable = FileName(path_u, self._client.convergence)
                 d2 = self._upload_dirnode.add_file(encoded_name_u, uploadable, metadata={"version":version}, overwrite=True)