Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jio-main
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Hardik Juneja
jio-main
Commits
6466a083
Commit
6466a083
authored
May 05, 2014
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replicate avoid to sync twice
parent
65d063d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
src/jio.storage/replicatestorage.js
src/jio.storage/replicatestorage.js
+5
-4
No files found.
src/jio.storage/replicatestorage.js
View file @
6466a083
...
...
@@ -176,7 +176,7 @@
count
+=
1
;
results
[
i
]
=
value
;
if
(
count
===
length
)
{
resolve
(
results
);
re
turn
re
solve
(
results
);
}
};
}
...
...
@@ -185,10 +185,10 @@
error_count
+=
1
;
count
+=
1
;
if
(
error_count
===
length
)
{
reject
(
err
);
re
turn
re
ject
(
err
);
}
if
(
count
===
length
)
{
resolve
(
results
);
re
turn
re
solve
(
results
);
}
}
...
...
@@ -452,10 +452,11 @@
});
p
.
then
(
deleteCache
,
deleteCache
);
if
(
this
.
_cache
.
batch_index
===
0
)
{
this
.
_cache
.
batch_index
=
1
;
// no global synchronisation is on going
p
.
then
(
function
()
{
return
doWhile
(
function
()
{
var
i
=
it
.
_cache
.
batch_index
,
l
=
it
.
_batch_length
,
test
=
true
;
var
i
=
it
.
_cache
.
batch_index
-
1
,
l
=
it
.
_batch_length
,
test
=
true
;
it
.
_cache
.
batch_index
+=
1
;
return
it
.
_allDocs
(
command
,
{},
{
"
limit
"
:
[
i
*
l
,
l
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment