diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-05-07 11:36:41 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-05-07 12:25:56 +0200 |
commit | a61004f7495df432c89ff3ff69512bb66eed7cb8 (patch) | |
tree | f4f337fa7114943e65b664d8b99ea003acf17b96 /doc/invocations-http-server/templates/invocation.html | |
parent | 9ff01a766d98359c7dcf199aa6c4fba7fb427140 (diff) | |
download | justbuild-a61004f7495df432c89ff3ff69512bb66eed7cb8.tar.gz |
Invocation server: also show information related to the used remote
Diffstat (limited to 'doc/invocations-http-server/templates/invocation.html')
-rw-r--r-- | doc/invocations-http-server/templates/invocation.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html index 73858979..62d98813 100644 --- a/doc/invocations-http-server/templates/invocation.html +++ b/doc/invocations-http-server/templates/invocation.html @@ -93,6 +93,15 @@ Inocations {{invocation | e}} {% if config %} <li> Target configuration: <tt>{{ config | e }}</tt></li> {% endif %} + {% if remote_address %} + <li> remote + <ul> + <li> address: <tt>{{ remote_address | e }}</tt> + <li> properties: <tt>{{ remote_props | e}}</tt> + <li> dispatch: <tt>{{ remote_dispatch | e }}</tt> + </ul> + </li> + {% endif %} {% if exit_code != None %} <li> exit code: {{ exit_code | e }}</li> {% endif %} |