Description
Around line 1148 in FailoverTransport.cs, there is the following code:
if(backups.Count < BackupPoolSize)
{
break;
}
In the Java code in FailoverTransport.java, there is a loop that has the opposite effect as the C# code.
for (Iterator<URI> iter = connectList.iterator(); iter.hasNext() && backups.size() < backupPoolSize {
In Java, we STAY IN the loop as long as we haven't filled up the backups collection. In C#, we're incorrectly BAILING OUT if we haven't filled up the collection.