Skip to content

Commit

Permalink
Fix the path on ping
Browse files Browse the repository at this point in the history
  • Loading branch information
t-persson committed Nov 27, 2024
1 parent 367800e commit 8a435e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions manifests/base/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ spec:
protocol: TCP
livenessProbe:
httpGet:
path: /api/etos/ping
path: /api/ping
port: http
readinessProbe:
httpGet:
path: /api/etos/ping
path: /api/ping
port: http
2 changes: 1 addition & 1 deletion python/src/etos_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
trace.set_tracer_provider(PROVIDER)

FastAPIInstrumentor().instrument_app(
APP, tracer_provider=PROVIDER, excluded_urls=".*/etos/ping"
APP, tracer_provider=PROVIDER, excluded_urls=".*/ping"
)

RegisterProviders()

0 comments on commit 8a435e8

Please sign in to comment.