ci(ananke): keep quality metrics and retention aligned

This commit is contained in:
codex 2026-04-21 06:43:23 -03:00
parent 7b67ee288b
commit 263e3e75fd
2 changed files with 2 additions and 1 deletions

1
Jenkinsfile vendored
View File

@ -41,6 +41,7 @@ spec:
options {
disableConcurrentBuilds()
buildDiscarder(logRotator(daysToKeepStr: '30', numToKeepStr: '200', artifactDaysToKeepStr: '30', artifactNumToKeepStr: '120'))
}
triggers {

View File

@ -32,7 +32,7 @@ class _GatewayHandler(http.server.BaseHTTPRequestHandler):
self.end_headers()
self.wfile.write(body)
def do_POST(self) -> None: # noqa: N802
def do_PUT(self) -> None: # noqa: N802
size = int(self.headers.get("Content-Length", "0"))
body = self.rfile.read(size).decode("utf-8")
self.posts.append((self.path, body))