adarmiento commented on a change in pull request #3700: NIFI-6638: Empty 
multiple queues at once at different flow levels
URL: https://github.com/apache/nifi/pull/3700#discussion_r333190580
 
 

 ##########
 File path: 
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/StandardNiFiServiceFacade.java
 ##########
 @@ -1947,8 +1960,8 @@ public ConnectionEntity createConnection(final Revision 
revision, final String g
     }
 
     @Override
-    public DropRequestDTO createFlowFileDropRequest(final String connectionId, 
final String dropRequestId) {
-        return 
dtoFactory.createDropRequestDTO(connectionDAO.createFlowFileDropRequest(connectionId,
 dropRequestId));
+    public DropRequestDTO createFlowFileDropRequest(final Set<String> 
connectionIds, final String dropRequestId) {
+        return dtoFactory.createDropRequestDTO(dropRequestId, 
connectionDAO.createFlowFileDropRequest(connectionIds,dropRequestId));
 
 Review comment:
   ```suggestion
           return dtoFactory.createDropRequestDTO(dropRequestId, 
connectionDAO.createFlowFileDropRequest(connectionIds, dropRequestId));
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to