From 7796b2c5052f086c2c562e9f79170db4bc719484 Mon Sep 17 00:00:00 2001 From: cahe Date: Thu, 14 Mar 2024 15:21:45 -0300 Subject: [PATCH] fix api response time --- kustomize/mycrd.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kustomize/mycrd.yaml b/kustomize/mycrd.yaml index f57aa3b..41064dd 100644 --- a/kustomize/mycrd.yaml +++ b/kustomize/mycrd.yaml @@ -72,7 +72,7 @@ data: class GetHandler(BaseHTTPRequestHandler): def do_GET(self): - sleep(60) + sleep(10) x = self.wfile.write self.send_response(200) self.send_header("Content-type", "text/html")