summaryrefslogtreecommitdiff
path: root/doc/invocations-http-server
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2025-05-07 11:58:48 +0200
committerKlaus Aehlig <klaus.aehlig@huawei.com>2025-05-07 12:12:49 +0200
commit520bb21a4a0887478dffbcc83997a4015f7e67a4 (patch)
tree7d96df899c086e899838981d71d9d484de3e1aba /doc/invocations-http-server
parentba921a5474e30912ebfc0417e5336507f345ed16 (diff)
downloadjustbuild-520bb21a4a0887478dffbcc83997a4015f7e67a4.tar.gz
Invocation server: fix access to configuration in overview list
Diffstat (limited to 'doc/invocations-http-server')
-rwxr-xr-xdoc/invocations-http-server/server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/invocations-http-server/server.py b/doc/invocations-http-server/server.py
index 83df3fd1..0e4175da 100755
--- a/doc/invocations-http-server/server.py
+++ b/doc/invocations-http-server/server.py
@@ -113,7 +113,7 @@ class InvocationServer:
profile_data = {}
count += 1
target = profile_data.get("target")
- config = profile_data.get("config", {})
+ config = profile_data.get("configuration", {})
invocation = {
"name": e,
"subcommand": profile_data.get("subcommand"),