mirror of https://github.com/apache/nifi.git
NIFI-5688: Ensure that when we map our flow to a VersionedProcessGroup that we include the connections' Load Balance Compression flag
This closes #3064
This commit is contained in:
parent
8da403ce9e
commit
8398ea77bc
|
@ -250,6 +250,7 @@ public class NiFiRegistryFlowMapper {
|
|||
final FlowFileQueue flowFileQueue = connection.getFlowFileQueue();
|
||||
versionedConnection.setLoadBalanceStrategy(flowFileQueue.getLoadBalanceStrategy().name());
|
||||
versionedConnection.setPartitioningAttribute(flowFileQueue.getPartitioningAttribute());
|
||||
versionedConnection.setLoadBalanceCompression(flowFileQueue.getLoadBalanceCompression().name());
|
||||
|
||||
versionedConnection.setBends(connection.getBendPoints().stream()
|
||||
.map(this::mapPosition)
|
||||
|
|
Loading…
Reference in New Issue