From fa664b7db7a64d5f5e506e059551fb85dc227de8 Mon Sep 17 00:00:00 2001 From: Max Date: Sat, 7 Feb 2026 12:32:32 +0800 Subject: [PATCH] Add root configuration to processPing response - Include the root path from the configuration in the response of the processPing function to provide additional context for the engine's state. --- engine/process.go | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/process.go b/engine/process.go index 4e2beb66..04409926 100644 --- a/engine/process.go +++ b/engine/process.go @@ -31,6 +31,7 @@ func processPing(process *process.Process) interface{} { res := map[string]interface{}{ "engine": share.BUILDNAME, "version": share.VERSION, + "root": config.Conf.Root, } return res }