have backup off by default

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@629725 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2008-02-21 09:10:27 +00:00
parent 2a153b085f
commit 204f6d8385
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ public class FailoverTransport implements CompositeTransport {
private Exception connectionFailure;
private boolean firstConnection = true;
//optionally always have a backup created
private boolean backup=true;
private boolean backup=false;
private List<BackupTransport> backups=new CopyOnWriteArrayList<BackupTransport>();
private int backupPoolSize=1;