2006-02-21 Complication
* Reactivate TCP tranport by default, in addition to re-allowing
This commit is contained in:
@ -60,7 +60,8 @@ public class TransportManager implements TransportEventListener {
|
||||
|
||||
private void configTransports() {
|
||||
String disableTCP = _context.router().getConfigSetting(PROP_DISABLE_TCP);
|
||||
if ( !ALLOW_TCP || (disableTCP == null) || (Boolean.TRUE.toString().equalsIgnoreCase(disableTCP)) ) {
|
||||
// Unless overridden by constant or explicit config property, start TCP tranport
|
||||
if ( !ALLOW_TCP || ((disableTCP != null) && (Boolean.TRUE.toString().equalsIgnoreCase(disableTCP))) ) {
|
||||
_log.info("Explicitly disabling the TCP transport!");
|
||||
} else {
|
||||
Transport t = new TCPTransport(_context);
|
||||
|
Reference in New Issue
Block a user