mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
7c318d4e30
commit
9217fbb7dd
2 changed files with 4 additions and 1 deletions
2
changelogs/fragments/clarify_error_message.yml
Normal file
2
changelogs/fragments/clarify_error_message.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- Fix an atomic_move error that is 'true', but misleading. Now we show all 3 files involved and clarify what happened.
|
|
@ -2618,7 +2618,8 @@ class AnsibleModule(object):
|
||||||
if unsafe_writes and e.errno == errno.EBUSY:
|
if unsafe_writes and e.errno == errno.EBUSY:
|
||||||
self._unsafe_writes(b_tmp_dest_name, b_dest)
|
self._unsafe_writes(b_tmp_dest_name, b_dest)
|
||||||
else:
|
else:
|
||||||
self.fail_json(msg='Unable to rename file: %s to %s: %s' % (src, dest, to_native(e)),
|
self.fail_json(msg='Unable to make %s into to %s, failed final rename from %s: %s' %
|
||||||
|
(src, dest, b_tmp_dest_name, to_native(e)),
|
||||||
exception=traceback.format_exc())
|
exception=traceback.format_exc())
|
||||||
except (shutil.Error, OSError, IOError) as e:
|
except (shutil.Error, OSError, IOError) as e:
|
||||||
self.fail_json(msg='Failed to replace file: %s to %s: %s' % (src, dest, to_native(e)),
|
self.fail_json(msg='Failed to replace file: %s to %s: %s' % (src, dest, to_native(e)),
|
||||||
|
|
Loading…
Reference in a new issue