rfellows opened a new pull request, #9767:
URL: https://github.com/apache/nifi/pull/9767

   # Summary
   
   [NIFI-14317](https://issues.apache.org/jira/browse/NIFI-14317)
   
   _Verification Note:_ You can force the error banner to appear when changing 
a flow version by modifying 
`FlowUpdateResource.java#createUpdateRequestResponse` to return a failureReason 
and setting complete to true.
   
   From:
   ```
           updateRequestDto.setComplete(asyncRequest.isComplete());
           updateRequestDto.setFailureReason(asyncRequest.getFailureReason());
   ```
   
   To: 
   ```
           updateRequestDto.setComplete(true);
           updateRequestDto.setFailureReason("There was an error");
   ```


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to