summaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2015-10-02 14:56:07 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2015-10-02 14:56:07 -0300
commitbc0fecfdf6c7bd681b44ba4e39a054e05f16463d (patch)
tree85f640663e6d4e06f7e6079892a48bb2cc903d6d /changes
parentbb8646d9769cb3c1d2b84b43047e6feaf8e40966 (diff)
[bug] move assign to prevent race condition
When the error happens too quickly, the errback is called before the assign of the callLater. And in the errback we cancel that call which gives an error. - Related: #7451
Diffstat (limited to 'changes')
-rw-r--r--changes/bug-7451_missing-attribute1
1 files changed, 1 insertions, 0 deletions
diff --git a/changes/bug-7451_missing-attribute b/changes/bug-7451_missing-attribute
new file mode 100644
index 00000000..502210c6
--- /dev/null
+++ b/changes/bug-7451_missing-attribute
@@ -0,0 +1 @@
+- Assign the timeout 'call later' before starting the sync to prevent race conditions. Related to #7451.