commit | 39541fdc0e0e5742ecfe895c981f171025bee1fd | [log] [tgz] |
---|---|---|
author | Andrew Geissler <andrewg@Andrews-MacBook-Pro.local> | Sat Aug 19 08:31:07 2017 -0500 |
committer | Andrew Geissler <geissonator@yahoo.com> | Sat Aug 19 08:33:34 2017 -0500 |
tree | 4f252ab90b604174c0a493d239bb31ae65bae341 | |
parent | 4296f4bb1e690da31695b5aa3385a99c608f22df [diff] [blame] |
Disable InsecureRequestWarning This pops up for me on all transactions to the BMC from my mac Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
diff --git a/openbmc-events b/openbmc-events index ac0615b..d9f4fc0 100755 --- a/openbmc-events +++ b/openbmc-events
@@ -3,6 +3,9 @@ import argparse import requests +import urllib3 +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + class BMC: def __init__(self, server):