Check this out.
Is it because the job is in a nested project? Or in an IterativeCleanup module? Or did this never work in real life?
Ran into this when trying to add this to final_post_xforms in Kiba::Csu::County config.
Workaround was to add this inline transform:
transform do |row|
if row[:preferred].blank?
warn("WARNING: #{row[:geographicallocationcounty]} does not "\
"match a county value")
end
row
end
Check this out.
Is it because the job is in a nested project? Or in an IterativeCleanup module? Or did this never work in real life?
Ran into this when trying to add this to
final_post_xformsin Kiba::Csu::County config.Workaround was to add this inline transform: