diff --git a/lib/import/base_resource.rb b/lib/import/base_resource.rb index ed115ebd9..1072a918e 100644 --- a/lib/import/base_resource.rb +++ b/lib/import/base_resource.rb @@ -75,6 +75,12 @@ module Import @resource.assign_attributes(resource) + # the return value here is kind of misleading + # and should not be trusted to indicate if a + # resource was actually updated. + # Use .action instead + return true if !attributes_changed? + return true if @dry_run @resource.save true