From 2108563705a2ec8bb80029d36122c69fa4d06df5 Mon Sep 17 00:00:00 2001 From: "Hansen, Tony (th1395)" Date: Wed, 1 Dec 2021 22:01:56 +0000 Subject: run the black formatting tool on python code also fix up some copyright & license block lines Change-Id: Ifb628e2ef1e5f13fed0a29964eec387d3982d605 Signed-off-by: Hansen, Tony (th1395) Issue-ID: DCAEGEN2-2995 Signed-off-by: Hansen, Tony (th1395) --- miss_htbt_service/check_health.py | 47 ++++++++++++++++++++------------------- 1 file changed, 24 insertions(+), 23 deletions(-) (limited to 'miss_htbt_service/check_health.py') diff --git a/miss_htbt_service/check_health.py b/miss_htbt_service/check_health.py index 4d04210..71f7c58 100644 --- a/miss_htbt_service/check_health.py +++ b/miss_htbt_service/check_health.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # ============LICENSE_START======================================================= -# Copyright (c) 2017-2020 AT&T Intellectual Property. All rights reserved. -# Copyright 2021 Fujitsu Ltd. +# Copyright (c) 2017-2021 AT&T Intellectual Property. All rights reserved. +# Copyright (c) 2021 Fujitsu Ltd. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -22,38 +22,39 @@ from urllib import parse class GetHandler(BaseHTTPRequestHandler): - def do_GET(self): parsed_path = parse.urlparse(self.path) - message = '\n'.join([ - 'CLIENT VALUES:', - 'client_address=%s (%s)' % (self.client_address, self.address_string()), - 'command=%s' % self.command, - 'path=%s' % self.path, - 'real path=%s' % parsed_path.path, - 'query=%s' % parsed_path.query, - 'request_version=%s' % self.request_version, - '', - 'SERVER VALUES:', - 'server_version=%s' % self.server_version, - 'sys_version=%s' % self.sys_version, - 'protocol_version=%s' % self.protocol_version, - '', - ]) + message = "\n".join( + [ + "CLIENT VALUES:", + "client_address=%s (%s)" % (self.client_address, self.address_string()), + "command=%s" % self.command, + "path=%s" % self.path, + "real path=%s" % parsed_path.path, + "query=%s" % parsed_path.query, + "request_version=%s" % self.request_version, + "", + "SERVER VALUES:", + "server_version=%s" % self.server_version, + "sys_version=%s" % self.sys_version, + "protocol_version=%s" % self.protocol_version, + "", + ] + ) self.send_response(200) self.end_headers() - self.wfile.write(bytes(message, 'utf-8')) + self.wfile.write(bytes(message, "utf-8")) return def do_POST(self): - content_len = int(self.headers.get('content-length', 0)) + content_len = int(self.headers.get("content-length", 0)) post_body = self.rfile.read(content_len) self.send_response(200) self.end_headers() data = json.loads(post_body) - self.wfile.write(bytes(data['health'], 'utf-8')) + self.wfile.write(bytes(data["health"], "utf-8")) return @@ -61,9 +62,9 @@ def start_health_check_server() -> None: from http.server import HTTPServer server = HTTPServer(("", 10002), GetHandler) - print('Starting server at http://localhost:10002') + print("Starting server at http://localhost:10002") server.serve_forever() -if __name__ == '__main__': +if __name__ == "__main__": start_health_check_server() -- cgit 1.2.3-korg