replicationCoord.setEnd(end);
replicationCoord.setTimezone(feed.getTimezone().getID());
}
private long getReplicationDelayInMillis(Feed feed, Cluster srcCluster) throws FalconException {
Frequency replicationDelay = FeedHelper.getCluster(feed, srcCluster.getName()).getDelay();
long delayInMillis=0;
if (replicationDelay != null) {
delayInMillis = ExpressionHelper.get().evaluate(
replicationDelay.toString(), Long.class);
}
return delayInMillis;
}