-
Notifications
You must be signed in to change notification settings - Fork 75
Open
Labels
Milestone
Description
- Nipyapi version: 0.14.3
- NiFi version: 1.12.1
- NiFi-Registry version: 0.8.0
- Python version: 3.8
- Operating System: Windows 10
Description
Trying to prevent processors from overlapping when I run the code. I want the code to detect if there is already a processor in the location.
What I Did
processor_list = ['GetHTTP','EvaluateJsonPath','AttributesToJSON','PutMongo']
for key,proc in enumerate(processor_list):
location_y = 300*i
location_x = 500*(key+1)
location = (location_x,location_y)
Urgency
Trying to automate a process flow which is still in development phase, so not that urgent