Browse Source

Fixed mitogen.yml (#8508)

Fixed the problem when call ansible-playbook contrib/mitogen/mitogen.yml
"The error was: 'dict object' has no attribute 'section'"

What type of PR is this?

/kind bug

What this PR does / why we need it:

Which issue(s) this PR fixes:

Fixes #

Special notes for your reviewer:

Does this PR introduce a user-facing change?:
pull/8516/head
DenisKa 2 years ago
committed by GitHub
parent
commit
696101a910
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      contrib/mitogen/mitogen.yml

2
contrib/mitogen/mitogen.yml

@ -40,7 +40,7 @@
path: ansible.cfg
mode: 0644
section: "{{ item.section | d('defaults') }}"
option: "{{ item.section }}"
option: "{{ item.option }}"
value: "{{ item.value }}"
with_items:
- option: strategy

Loading…
Cancel
Save