Member since
03-09-2018
7
Posts
0
Kudos Received
0
Solutions
03-16-2018
01:34 PM
@Pavan M Could you please see my edited answer. let me know if you still having issues ..
... View more
03-17-2018
10:08 AM
1 Kudo
@Pavan M As you are not transferring any of the flowfiles to REL_FAILURE, Transfer the else flowfiles to failure relation and auto terminate the failure relation, else:
session.transfer(flowFile, REL_FAILURE) Auto terminate failure relation (or) You can use session.remove to remove the flowfile else: session.remove(flowFile) by using any of the above ways you can achieve same result as you are expecting.
... View more
03-09-2018
04:30 PM
Thanks for the response @Shu, I will try the options suggested by you and will get back.
... View more