Skip to content

Instantly share code, notes, and snippets.

@stbenjam
Last active August 29, 2015 14:21
Show Gist options
  • Save stbenjam/7a3d7668f37613ecab72 to your computer and use it in GitHub Desktop.
Save stbenjam/7a3d7668f37613ecab72 to your computer and use it in GitHub Desktop.
Fix upload salt-reports
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