AWS Batch job monitor page
()
| 1389 | @app.route("/batch") |
| 1390 | @print_timing |
| 1391 | def batch_monitor(): |
| 1392 | """AWS Batch job monitor page""" |
| 1393 | # Don't show batch monitor in static mode - skip freezing |
| 1394 | if STATIC_MODE: |
| 1395 | return redirect(url_for("index")) |
| 1396 | |
| 1397 | return render_template("batch.html") |
| 1398 | |
| 1399 | |
| 1400 | @timeout(120) |
nothing calls this directly
no outgoing calls
no test coverage detected