You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 11, 2022. It is now read-only.
The replicator will start at the sequence provided and then continue to the end of the changes feed.
3. What actually happened
The changes reader died.
Environment details
The current version is affected based on the javadocs
This can be remedied by changing the sinceSeq() to use a String instead of an integer and updating the applicable javadocs to explain what needs to be passed.
This was confirmed by manually changing the since_seq option in the replicator document to the entire String of the wanted start point.
Bug Description
The Replicator sinceSeq() call takes an Integer but the changes feed needs the entire sequence as a String to function properly.
1. Steps to reproduce and the simplest code sample possible to demonstrate the issue
2. What you expected to happen
The replicator will start at the sequence provided and then continue to the end of the changes feed.
3. What actually happened
The changes reader died.
Environment details
The current version is affected based on the javadocs
This can be remedied by changing the sinceSeq() to use a String instead of an integer and updating the applicable javadocs to explain what needs to be passed.
This was confirmed by manually changing the
since_seqoption in the replicator document to the entire String of the wanted start point.