Hi there,
While running multiBandDriver.py on v16.0 we found that our process kept crashing at line 105 of pipe_tasks/setPrimaryFlags.py. After a bit of hunting around, it seems that the setFlag method doesn’t seem to like isTractInner being a numpy.bool_ class as opposed to a standard python bool class.
Apologies if a recent update now means skyMap.findTract(skyPos).getId() now returns a python int rather than a numpy.int (which would fix the problem), but I thought I’d raise it here, just in case. Editing line 104 to isTractInner = int(sourceInnerTractId) == tractId fixes the problem for us.
Thanks,
James