johje349
johje349
This is still a problem in 3006.7 for us, and we have a cronjob to restart Salt master once a day. We are not using external job cache.
Yes we use orchestration states with batch set to 20%.
> @johje349 This is on Ubuntu 16.04, can you confirm this is an issue on an OS which is currently supported and not itself EOL or is there a typo...
This small script to fixes it for me: ``` #!/usr/bin/bash PDAGENT_PATH="/usr/lib/python3/dist-packages/pdagent" echo "Fixing six" ln -sf /usr/lib/python3/dist-packages/six.py "${PDAGENT_PATH}/thirdparty/six.py" echo "Patching config.py" sed -i 's/configparser\.SafeConfigParser/configparser.ConfigParser/g' "${PDAGENT_PATH}/config.py" echo "Restarting pdagent" service pdagent...