Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
silver-platter
gitlab-deps
Commits
916d717d
Commit
916d717d
authored
Dec 27, 2020
by
ale
Browse files
Add a /healthz handler for monitoring purposes
parent
5aa7f23a
Changes
1
Hide whitespace changes
Inline
Side-by-side
gitlab_deps/server.py
View file @
916d717d
...
...
@@ -87,3 +87,8 @@ def app_webhook():
queue
.
put
(
request
.
json
)
return
make_response
(
'{}'
)
@
app
.
route
(
'/healthz'
)
def
healthz
():
return
make_response
(
'OK'
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment