From 31402904b12dc978127526bf52c128f8ece84871 Mon Sep 17 00:00:00 2001 From: cahe Date: Thu, 14 Mar 2024 15:43: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 e847f68..3031ca9 100644 --- a/kustomize/mycrd.yaml +++ b/kustomize/mycrd.yaml @@ -87,7 +87,7 @@ data: class GetHandler(BaseHTTPRequestHandler): def do_GET(self): - sleep(1) + sleep(5) x = self.wfile.write self.send_response(200) self.send_header("Content-type", "text/html")