Bug 2035663
| Summary: | Salt Minion execution fails with Python error "AttributeError: module 'collections' has no attribute 'MutableMapping'" | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Matthew Coleman <matthew.e.coleman> |
| Component: | salt | Assignee: | Kirill Ponomarev <kp> |
| Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | high | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 35 | CC: | brycel, david-dm.murphy, frederic, kp |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | --- | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2022-01-12 00:19:10 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
Upstream Salt issue filed here: https://github.com/saltstack/salt/issues/61401 This appears to have been user error on my part and I was somehow forcing the system into an older version of Requests. Closing this and the Salt issue. |
Description of problem: When executing subcommands with the Salt Minion, a Python stack trace is encountered which ends with "AttributeError: module 'collections' has no attribute 'MutableMapping'". Version-Release number of selected component (if applicable): 3003.3 How reproducible: Always. Steps to Reproduce: 1. `sudo dnf install salt-minion` 2. Configure the Salt Minion to talk to some Salt Master (might not be required). 3. `sudo salt-call state.highstate` Actual results: ``` Traceback (most recent call last): File "/usr/bin/salt-call", line 33, in <module> sys.exit(load_entry_point('salt==3003.3', 'console_scripts', 'salt-call')()) File "/usr/lib/python3.10/site-packages/salt/scripts.py", line 437, in salt_call import salt.cli.call File "/usr/lib/python3.10/site-packages/salt/cli/call.py", line 6, in <module> import salt.cli.caller File "/usr/lib/python3.10/site-packages/salt/cli/caller.py", line 15, in <module> import salt.minion File "/usr/lib/python3.10/site-packages/salt/minion.py", line 36, in <module> import salt.pillar File "/usr/lib/python3.10/site-packages/salt/pillar/__init__.py", line 16, in <module> import salt.fileclient File "/usr/lib/python3.10/site-packages/salt/fileclient.py", line 26, in <module> import salt.utils.http File "/usr/lib/python3.10/site-packages/salt/utils/http.py", line 73, in <module> import requests File "/usr/local/lib/python3.10/site-packages/requests/__init__.py", line 60, in <module> from . import utils File "/usr/local/lib/python3.10/site-packages/requests/utils.py", line 32, in <module> from .cookies import cookiejar_from_dict File "/usr/local/lib/python3.10/site-packages/requests/cookies.py", line 172, in <module> class RequestsCookieJar(cookielib.CookieJar, collections.MutableMapping): AttributeError: module 'collections' has no attribute 'MutableMapping' ``` Expected results: Salt Minion works as expected and does not stack trace. Additional info: Seems to be related to using Python 3.10 according to other errors in other Python applications exhibiting similar symptoms. If so, [the official Salt documentation](https://docs.saltproject.io/en/latest/topics/installation/fedora.html) does not work under Fedora 35 and should be fixed upstream.