Github user jbertram commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2438#discussion_r235566861
--- Diff:
artemis-server/src/main/java/org/apache/activemq/artemis/core/config/BridgeConfiguration.java
---
@@ -75,6 +76,8 @@
// The bridge shouldn't be sending blocking anyways
private long callTimeout = ActiveMQClient.DEFAULT_CALL_TIMEOUT;
+ private ComponentConfigurationRoutingType routingType =
ComponentConfigurationRoutingType.valueOf(ActiveMQDefaultConfiguration.getDefaultDivertRoutingType());
--- End diff --
Nice catch. Fixed.
---