We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54fbe28 commit e5da84cCopy full SHA for e5da84c
restclient.py
@@ -2,11 +2,14 @@
2
from collections import namedtuple
3
4
import requests
5
+import urllib3
6
from requests.exceptions import HTTPError
7
from typing import Iterable
8
9
import logging_aux
10
11
+urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
12
+
13
GrowDecision = namedtuple("GrowDecision", "cores_to_grow nodes_to_grow sockets_to_grow")
14
IdleNode = namedtuple("IdleNode", "node_name timestamp server_name")
15
0 commit comments