We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4893549 commit 26f89edCopy full SHA for 26f89ed
protoplaster/webui/views.py
@@ -51,16 +51,13 @@ def configs():
51
52
@webui_blueprint.route("/runs")
53
def test_runs():
54
- r = requests.get(f"http://localhost:5000/api/v1/configs", timeout=2)
55
- configs = r.json()
56
device_name = request.args.get("device")
57
devices = get_all_devices()
58
selected_device = get_device_by_name(device_name) or devices[0]
59
r = requests.get(f"{selected_device['url']}/api/v1/test-runs", timeout=2)
60
runs = r.json()
61
return render_template("runs.html",
62
runs=runs,
63
- configs=configs,
64
devices=devices,
65
selected_device=selected_device,
66
active="runs")
0 commit comments