mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-03-09 15:40:09 +00:00
Fixing quotes
This commit is contained in:
parent
4bfac574db
commit
094f33d618
1 changed files with 2 additions and 2 deletions
|
@ -584,12 +584,12 @@ def logout():
|
||||||
return redirect(url_for('list_vms'), 302)
|
return redirect(url_for('list_vms'), 302)
|
||||||
|
|
||||||
|
|
||||||
@app.route("/health")
|
@app.route('/health')
|
||||||
def health():
|
def health():
|
||||||
"""
|
"""
|
||||||
Shows an ok status if the application is up and running
|
Shows an ok status if the application is up and running
|
||||||
"""
|
"""
|
||||||
return {"status": "ok"}
|
return {'status': 'ok'}
|
||||||
|
|
||||||
|
|
||||||
def exit_handler():
|
def exit_handler():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue