Forum Discussion
john john
Sep 07, 2023Steel Contributor
There is a problem with the flow trigger; when import the solution inside the prodcution environme
I have an automated flow which which contains 3 trigger conditions as follow:-
@equals(length(split(triggerOutputs()?['body/{Path}'],'/')),int(parameters('CustomerFolderLocation (birchgol_CustomerFolderLocation)'))) @equals(triggerOutputs()?['body/{IsFolder}'],true) @equals(endsWith(triggerOutputs()?['body/{Path}'],concat(parameters('PathToFolder (birchgol_PathToFolder)'),'/')),true)
the flow worked well on the Dev environment, but when i move it to the PROD environment inside the solution the flow will never get triggered and i will get this error:-
any advice why the workflow triggers are not working inside the PROD environment?
Where we defined the Trigger conditions as follow:-
and the parameters are environment variables.
- SvenSieverdingBronze Contributor
Hi john john
Is your flow being triggered if you remove all of the trigger conditions?
Best Regards,
Sven- john johnSteel Contributor
SvenSieverdingYes , and the flow is working well on the Dev environment..