Is there a way to check in a Python recipe if it was called by a scenario?
info-rchitect
Registered Posts: 186 ✭✭✭✭✭✭
Hi,
I have a scenario that triggers a Python recipe if a dependent dataset has changed. I would like to be able to call some method to handle the logic in my recipe:
if triggerd_by_scenario: print('triggerd by a scenario')
thx
Operating system used: Windows 10
Best Answer
-
Hi @info-rchitect
PLease check if something like below worksif 'scenarioTriggerRunId' in dataiku.get_custom_variables(): print('Run by Scenario')