Always use the commit queue, don't bypass with commit=True.
This commit is contained in:
parent
7f3602d673
commit
00a443eec3
1 changed files with 4 additions and 11 deletions
|
@ -735,9 +735,6 @@ class Photo(ObjectBase):
|
||||||
|
|
||||||
if delete_file:
|
if delete_file:
|
||||||
path = self.real_path.absolute_path
|
path = self.real_path.absolute_path
|
||||||
if commit:
|
|
||||||
os.remove(path)
|
|
||||||
else:
|
|
||||||
queue_action = {'action': os.remove, 'args': [path]}
|
queue_action = {'action': os.remove, 'args': [path]}
|
||||||
self.photodb.on_commit_queue.append(queue_action)
|
self.photodb.on_commit_queue.append(queue_action)
|
||||||
self._uncache()
|
self._uncache()
|
||||||
|
@ -1039,10 +1036,6 @@ class Photo(ObjectBase):
|
||||||
args = [old_path.absolute_path]
|
args = [old_path.absolute_path]
|
||||||
|
|
||||||
self._uncache()
|
self._uncache()
|
||||||
if commit:
|
|
||||||
action(*args)
|
|
||||||
self.photodb.commit(message='rename file')
|
|
||||||
else:
|
|
||||||
queue_action = {'action': action, 'args': args}
|
queue_action = {'action': action, 'args': args}
|
||||||
self.photodb.on_commit_queue.append(queue_action)
|
self.photodb.on_commit_queue.append(queue_action)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue