// TODO: this is a hack until the coordinator module works correctly
if (coordinator) {
binder.install(new FailureDetectorModule());
}
else {
binder.bind(FailureDetector.class).toInstance(new FailureDetector() {
@Override
public Set<ServiceDescriptor> getFailed()
{
return ImmutableSet.of();
}