Skip to content
Snippets Groups Projects
Commit 6bd5cd02 authored by root's avatar root
Browse files

Disabled SSL requests warnings when ignoressl is being used

parent d4c7a72b
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,9 @@ import argparse
import requests
from requests.auth import HTTPBasicAuth
import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
parser = argparse.ArgumentParser()
parser.add_argument("host", default="localhost", nargs="?",
help="Agent to retrieve variables from")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment