public Task UpdateReplicationInformationIfNeededAsync(AsyncServerClient serverClient, bool force = false)
        {
            if (force)
            {
                throw new NotSupportedException("Force is not supported in ReplicationAwareRequestExecuter");
            }

            return(replicationInformer.UpdateReplicationInformationIfNeededAsync(serverClient));
        }
Exemple #2
0
 public Task UpdateReplicationInformationIfNeededAsync(AsyncServerClient serverClient, bool force = false)
 {
     return(replicationInformer.UpdateReplicationInformationIfNeededAsync(serverClient, force));
 }