updateReplicationConfig := updateRequest.ReplicationConfig
if len(updateReplicationConfig.Clusters) != 0 {
clusterListChanged = true
var clustersNew []string
for _, clusterConfig := range updateReplicationConfig.Clusters {
clustersNew = append(clustersNew, clusterConfig.GetClusterName())
}
replicationConfig.Clusters = clustersNew
}
if updateReplicationConfig.State != enumspb.REPLICATION_STATE_UNSPECIFIED &&