diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 45beca1..6391f41 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -3,8 +3,6 @@ name: on: push: branches: [ "main" ] - pull_request: - branches: [ "main" ] permissions: contents: read diff --git a/main.py b/main.py index e4f9730..d85c055 100644 --- a/main.py +++ b/main.py @@ -9,7 +9,7 @@ from app import input_parser as parser from app.database import get_db -VERSION = "1.1.0" +VERSION = "1.1.1" # Prometheus metrics REQUEST_COUNT = Counter("http_requests_total", "Total HTTP requests", ["method", "endpoint", "status"]) REQUEST_LATENCY = Summary("http_request_latency_seconds", "Request latency in seconds")