pull = [_database createPullReplication:_remoteURL];
pull.continuous = YES;
pull.customProperties = @{@"websocket": @0};
push = [_database createPushReplication:_remoteURL];
push.continuous = YES;
push.customProperties = @{@"websocket": @0};
On Jul 24, 2015, at 8:02 AM, VG <va...@pushstrength.com> wrote:I am in the process of upgrading from 1.0.4 to 1.1. The replication process works fine with 1.0.4 but with 1.1, I get kCBLReplicationOffline.
I am using websockets for pull/push. Has the process changed for 1.1?