Hi I am trying to debug multi processes in python. This below is a portion of where I run multi-processes using Pool
pool = Pool(num_half_logical_cpus)
pool_result_dict = pool.starmap(process_batches, lstListSets)
However, I can't hit any breakpoints. Can anyone guide me to hit those breakpoints I set up?
Thanks!



