From b7e582fc436639b514b597dfb68ac75fb9a81e53 Mon Sep 17 00:00:00 2001 From: Piotr Konopka Date: Mon, 18 Aug 2025 14:04:04 +0200 Subject: [PATCH] Add a message for the event reporting successful environment creation This becomes consistent with two other events in this function, which report failure to create an environment. --- core/server.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/server.go b/core/server.go index d8d3a6a1..f14c1e45 100644 --- a/core/server.go +++ b/core/server.go @@ -352,6 +352,7 @@ func (m *RpcServer) doNewEnvironmentAsync(cxt context.Context, userVars map[stri State: newEnv.CurrentState(), LastRequestUser: requestUser, WorkflowTemplateInfo: newEnv.GetWorkflowInfo(), + Message: "created new environment", }) return }