summaryrefslogtreecommitdiffstats
path: root/web/api/web_api_v1.c
diff options
context:
space:
mode:
Diffstat (limited to 'web/api/web_api_v1.c')
-rw-r--r--web/api/web_api_v1.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/web/api/web_api_v1.c b/web/api/web_api_v1.c
index ec0a0b6d61..e08f8aa2f8 100644
--- a/web/api/web_api_v1.c
+++ b/web/api/web_api_v1.c
@@ -1410,7 +1410,10 @@ int web_client_api_request_v1_function(RRDHOST *host, struct web_client *w, char
wb->content_type = CT_APPLICATION_JSON;
buffer_no_cacheable(wb);
- return rrd_function_run(host, wb, timeout, function, true, NULL,
+ char transaction[UUID_COMPACT_STR_LEN];
+ uuid_unparse_lower_compact(w->transaction, transaction);
+
+ return rrd_function_run(host, wb, timeout, function, true, transaction,
NULL, NULL,
web_client_interrupt_callback, w, NULL);
}