Skip to content

Commit

Permalink
Merge pull request #1596 from couchbase/feature/1589
Browse files Browse the repository at this point in the history
Fixed #1589 - Investigate possible push replication issue
  • Loading branch information
pasin authored Feb 15, 2017
2 parents 5e9ab12 + a53f49d commit e276993
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ private void submitRevisions(final List<DocumentChange> changes) {
// Skip revisions that originally came from the database I'm syncing to:
URL source = change.getSource();
if (source != null && source.toURI().equals(remoteUri))
return;
continue;
RevisionInternal rev = change.getAddedRevision();
if (rev == null)
continue;
Expand Down

0 comments on commit e276993

Please sign in to comment.