You have to change the type for the context variable in both jobs (parent and child). |
Hi jlolling,
I configured the context variable in child job as of type Object.
But in Parent job I'm using
input_row.ListObject directly from the trunjob flow like below.
List<HashMap<String,HashMap<String, String>>> childjob_list = (List<HashMap<String,HashMap<String, String>>>)input_row.ListObject;
And also tried by defining the same context in parent job like below but no luck,getting same exception.
List<HashMap<String,HashMap<String, String>>> childjob_list = (List<HashMap<String,HashMap<String, String>>>)input_row.ListObject;