From cc1560abe49954c92bccc0c48631778c0cd1c064 Mon Sep 17 00:00:00 2001 From: cahe Date: Thu, 14 Mar 2024 17:42:38 -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 868346e..4e0cfef 100644 --- a/kustomize/mycrd.yaml +++ b/kustomize/mycrd.yaml @@ -90,7 +90,7 @@ data: class GetHandler(BaseHTTPRequestHandler): def do_GET(self): - sleep(10) + sleep(1) x = self.wfile.write self.send_response(200) self.send_header("Content-type", "text/html")