Skip to content

Commit dcf9738

Browse files
committed
fix(tests): fixed build for python 3.7.15 and Ubuntu 20.04.1
1 parent 661cb19 commit dcf9738

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

tests/test_InfluxDBClient.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -420,15 +420,3 @@ def do_GET(self):
420420
commit="abcdefgh")).encode('utf-8')
421421
self._set_headers(response)
422422
self.wfile.write(response)
423-
424-
425-
# def do_GET(self):
426-
# response = json.dumps(
427-
# dict(name="influxdb", message="ready for queries and writes", status="pass", checks=[], version="2.0.0",
428-
# commit="abcdefgh")).encode('utf-8')
429-
# self.send_response(http.HTTPStatus.OK)
430-
# self.send_header("Content-type", 'application/json')
431-
# self.send_header("Content-Length", f'{len(response)}')
432-
# self.send_header("Last-Modified", self.date_time_string())
433-
# self.end_headers()
434-
# self.wfile.write(response)

0 commit comments

Comments
 (0)