tokens[i] = tokenMetadata_.getToken(endpoints[i]);
}
/* Start the bootstrap algorithm */
if ( filterSources == null )
bootStrapper_.submit( new BootStrapper(endpoints, tokens) );
else
{
String[] allFilters = filterSources.split(":");
EndPoint[] filters = new EndPoint[allFilters.length];
for ( int i = 0; i < allFilters.length; ++i )
{
filters[i] = new EndPoint( allFilters[i].trim(), DatabaseDescriptor.getStoragePort() );
}
bootStrapper_.submit( new BootStrapper(endpoints, tokens, filters) );
}
}