Discussion posts and replies are publicly visible
Care to share the process model? From what I can tell, It looks like you may have a process that is calling itself in a subprocess.
The mainprocess will call itselt as a sub-process at the end, how is process depth counted here? Like other sub-processes are also counted
Well that's pretty much your issue right there. You have a recursive loop. Technically, you can only loop 100 times using this method.