Oops, forgot to actually use HTTPServer.expected_status
This commit is contained in:
parent
75881cbe48
commit
8a1bbdf2df
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ class HTTPServer(System):
|
||||||
self.state = SystemState.UNKNOWN
|
self.state = SystemState.UNKNOWN
|
||||||
try:
|
try:
|
||||||
r = requests.head(self.url, timeout=1.0, verify=not self.allow_self_signed_cert)
|
r = requests.head(self.url, timeout=1.0, verify=not self.allow_self_signed_cert)
|
||||||
if r.status_code == 200:
|
if r.status_code == self.expected_status:
|
||||||
self.state = SystemState.OK
|
self.state = SystemState.OK
|
||||||
else:
|
else:
|
||||||
self.state = SystemState.FAILED
|
self.state = SystemState.FAILED
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue