DISPATCH-179 - Updated default configuration file to not use deprecated types
Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/d953608b Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/d953608b Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/d953608b Branch: refs/heads/master Commit: d953608b0bef8dc964ab249bd9e9e5810cd7380e Parents: 7f66a61 Author: Ted Ross <[email protected]> Authored: Fri Mar 18 15:40:11 2016 -0400 Committer: Ted Ross <[email protected]> Committed: Fri Mar 18 15:40:11 2016 -0400 ---------------------------------------------------------------------- etc/qdrouterd.conf | 59 +++++++++++++------------------------------------ 1 file changed, 15 insertions(+), 44 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/d953608b/etc/qdrouterd.conf ---------------------------------------------------------------------- diff --git a/etc/qdrouterd.conf b/etc/qdrouterd.conf index 25ca222..67abb6a 100644 --- a/etc/qdrouterd.conf +++ b/etc/qdrouterd.conf @@ -36,57 +36,28 @@ listener { authenticatePeer: no } -fixedAddress { - prefix: /closest/ - fanout: single - bias: closest +address { + prefix: closest + distribution: closest } -fixedAddress { - prefix: /multicast/ - fanout: multiple +address { + prefix: multicast + distribution: multicast } -fixedAddress { - prefix: /queue/ - phase: 0 - fanout: single - bias: closest +address { + prefix: unicast + distribution: closest } -fixedAddress { - prefix: /queue/ - phase: 1 - fanout: single - bias: closest +address { + prefix: exclusive + distribution: closest } -fixedAddress { - prefix: /unicast - fanout: single - bias: closest +address { + prefix: broadcast + distribution: multicast } -fixedAddress { - prefix: /exclusive - fanout: single - bias: closest -} - -fixedAddress { - prefix: /broadcast - fanout: multiple -} - -fixedAddress { - prefix: / - fanout: multiple -} - -## -## Temporary -## -log { - module: ROUTER_CORE - enable: trace+ -} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
