Github user mcgilman commented on the issue:
https://github.com/apache/nifi/pull/2678
Thanks for the PR @markap14! I ran into an issue with the proposed
solution. Steps to replicate:
- Create a PG
- Add a Processor (InvokeHTTP) to the PG.
- Add a CS (SSLContextService) to the PG.
- Reference the CS in the Processor.
- Copy the Processor out of the PG.
- Processor CS reference is no longer valid and it's no longer a
referencing component of the CS. Yay!
- Create another PG at the same level as the in Step 1.
- Move the copied Processor into the new PG.
- Move the new PG inside the PG created in Step 1.
- Copied Processor CS reference is valid again. Yay!
- However, it does not appear as a referencing component of the CS :/
---