Last active
August 29, 2015 14:21
-
-
Save stbenjam/7a3d7668f37613ecab72 to your computer and use it in GitHub Desktop.
Fix upload salt-reports
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Edit /usr/sbin/upload-salt-reports | |
2. On line 55 change the {} to [] so it looks like this: | |
def run(function, argument=[]): | |
3. On Line 65 change return ret to this: | |
return ret['data'] if 'data' in ret else ret | |
4. Run upload-salt-reports by hand and see that it's uploading reports again |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment