Sub flow results in error. Log picks up: java.lang.NullPointerException at com.snc.process_flow.engine.CallBlockOperation.lambda$run$0(CallBlockOperation.java:72)Issue A subflow results in error state. If you check the logs it records a nullpointer exception: Flow Designer: Operation ... failed with error: java.lang.NullPointerException at com.snc.process_flow.engine.CallBlockOperation.lambda$run$0(CallBlockOperation.java:72) at com.google.common.collect.RegularImmutableMap.forEach(RegularImmutableMap.java:185)CauseIt fails when the subflow is finished and the output is passed back to the main flow. It loops through all the outputs, if it can't process it this error will be thrown. ResolutionYou need to check the outputs of the subflow and see if there are any problems here. For example, an ouput could have type Records but not actually reference a record. This would result in this error.