From 3e395262e68a3875a3b77d91cc093671eabe7e6b Mon Sep 17 00:00:00 2001 From: Raphael Vigee Date: Mon, 30 Dec 2024 00:34:36 +0100 Subject: [PATCH] rename label --- internal/engine/schedule.go | 2 +- plugin/pluginexec/plugin.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/engine/schedule.go b/internal/engine/schedule.go index 1ae1ec00..99ab1a22 100644 --- a/internal/engine/schedule.go +++ b/internal/engine/schedule.go @@ -449,7 +449,7 @@ func (e *Engine) pipes(ctx context.Context, driver pluginv1connect.DriverClient, func (e *Engine) Execute(ctx context.Context, def *LightLinkedTarget, options ExecOptions, sf *Singleflight) (*ExecuteResult, error) { debugger.SetLabels(func() []string { return []string{ - fmt.Sprintf("hephv2/engine: Execute %v %v", def.Ref.GetPackage(), def.Ref.GetName()), "", + fmt.Sprintf("heph/engine: Execute %v %v", def.Ref.GetPackage(), def.Ref.GetName()), "", } }) diff --git a/plugin/pluginexec/plugin.go b/plugin/pluginexec/plugin.go index d51b20b9..8e7a5f7d 100644 --- a/plugin/pluginexec/plugin.go +++ b/plugin/pluginexec/plugin.go @@ -254,7 +254,7 @@ func (p *Plugin) inputEnv( func (p *Plugin) Run(ctx context.Context, req *connect.Request[pluginv1.RunRequest]) (*connect.Response[pluginv1.RunResponse], error) { debugger.SetLabels(func() []string { return []string{ - fmt.Sprintf("hephv2/pluginexec %v: %v %v", p.name, req.Msg.GetTarget().GetRef().GetPackage(), req.Msg.GetTarget().GetRef().GetName()), "", + fmt.Sprintf("heph/pluginexec %v: %v %v", p.name, req.Msg.GetTarget().GetRef().GetPackage(), req.Msg.GetTarget().GetRef().GetName()), "", } })