Hi,
Recently I stumbled one interesting issue in Couchbase Lite framework.
If after starting a replication I try restart it then the replication is stopped.
I got version 1.1.0 (f1aa2cd07433900d8eebc29f8eb8fe1a81df94ca) with ForestDB support.
For reproduce it you can CBL iOS Test App, and in method updateSyncURL change:
[_pull start];
[_push start];
to:
[_pull start];
[_pull restart];
[_push start];
[_push restart];
After these change my databases replications are stopped.