mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Make sure to clean up even if an exception occurs (#50620)
This commit is contained in:
parent
2dbade4adc
commit
9a520b26e3
1 changed files with 11 additions and 10 deletions
|
@ -61,17 +61,18 @@ def setup_env(filename):
|
|||
setattr(module.AnsibleModule, '__init__', fake)
|
||||
setattr(module, '_load_params', _fake_load_params)
|
||||
|
||||
yield fake
|
||||
try:
|
||||
yield fake
|
||||
finally:
|
||||
setattr(module.AnsibleModule, '__init__', _original_init)
|
||||
setattr(module, '_load_params', _original_load_params)
|
||||
|
||||
setattr(module.AnsibleModule, '__init__', _original_init)
|
||||
setattr(module, '_load_params', _original_load_params)
|
||||
|
||||
# Clean up imports to prevent issues with mutable data being used in modules
|
||||
for k in list(sys.modules.keys()):
|
||||
# It's faster if we limit to items in ansible.module_utils
|
||||
# But if this causes problems later, we should remove it
|
||||
if k not in pre_sys_modules and k.startswith('ansible.module_utils.'):
|
||||
del sys.modules[k]
|
||||
# Clean up imports to prevent issues with mutable data being used in modules
|
||||
for k in list(sys.modules.keys()):
|
||||
# It's faster if we limit to items in ansible.module_utils
|
||||
# But if this causes problems later, we should remove it
|
||||
if k not in pre_sys_modules and k.startswith('ansible.module_utils.'):
|
||||
del sys.modules[k]
|
||||
|
||||
|
||||
def get_argument_spec(filename):
|
||||
|
|
Loading…
Reference in a new issue