From 3066dea07d7f62056d4a506d06399e600fc389c3 Mon Sep 17 00:00:00 2001 From: gifrerenom <lluis.gifre@cttc.es> Date: Fri, 20 Jan 2023 16:26:33 +0000 Subject: [PATCH] WebUI component: - corrected load generator commands --- src/webui/service/templates/main/debug.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/webui/service/templates/main/debug.html b/src/webui/service/templates/main/debug.html index 4b3e289c3..1ab3be251 100644 --- a/src/webui/service/templates/main/debug.html +++ b/src/webui/service/templates/main/debug.html @@ -36,8 +36,7 @@ --> <h3>Load Generator:</h3> - <a href="{{ url_for('load_gen.run') }}" class="btn btn-primary" style="margin-bottom: 10px;"> - Run - </a> + <a href="{{ url_for('load_gen.start') }}" class="btn btn-primary" style="margin-bottom: 10px;">Start</a> + <a href="{{ url_for('load_gen.stop') }}" class="btn btn-primary" style="margin-bottom: 10px;">Stop</a> {% endblock %} -- GitLab