From 0041164c909f102b8fe171a4411b8706c78433a7 Mon Sep 17 00:00:00 2001 From: Netkas Date: Thu, 14 Jan 2021 18:48:10 -0500 Subject: [PATCH] Minor correction --- services/ping_service/coffeehouse_ping/server.py | 1 - 1 file changed, 1 deletion(-) diff --git a/services/ping_service/coffeehouse_ping/server.py b/services/ping_service/coffeehouse_ping/server.py index bb864b77..dedf987b 100644 --- a/services/ping_service/coffeehouse_ping/server.py +++ b/services/ping_service/coffeehouse_ping/server.py @@ -14,7 +14,6 @@ class Server(object): self.web_application = web.Application() self.web_application.add_routes( [web.post('/', self.ping)] - [web.get('/', self.ping)] ) async def ping(self, request):