mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 14:40:19 -07:00
Fix config timeout issue for network modules (#28261)
* Fix config timeout issue for network modules * Re-enable network test * Remove unwanted persistent connection timer * Minor changes in description
This commit is contained in:
parent
016cd0691c
commit
8a6e1531b7
3 changed files with 8 additions and 24 deletions
|
@ -340,7 +340,7 @@ class PlayContext(Base):
|
|||
# general flags (should we move out?)
|
||||
# for flag in ('connection', 'remote_user', 'private_key_file', 'verbosity', 'force_handlers', 'step', 'start_at_task', 'diff'):
|
||||
# should only be 'non plugin' flags
|
||||
for flag in ('connection', 'private_key_file', 'verbosity', 'force_handlers', 'step', 'start_at_task', 'diff'):
|
||||
for flag in ('connection', 'remote_user', 'private_key_file', 'verbosity', 'force_handlers', 'step', 'start_at_task', 'diff'):
|
||||
attribute = getattr(options, flag, False)
|
||||
if attribute:
|
||||
setattr(self, flag, attribute)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue