From e94809c4d263b63ec339102a7b908817b537a7be Mon Sep 17 00:00:00 2001 From: Matthieu MOREL Date: Wed, 3 Apr 2024 07:44:29 +0200 Subject: [PATCH] Update server_errors.go Signed-off-by: Matthieu MOREL --- pkg/plugin/framework/common/server_errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/plugin/framework/common/server_errors.go b/pkg/plugin/framework/common/server_errors.go index 7763d4e9ec..16a3fde033 100644 --- a/pkg/plugin/framework/common/server_errors.go +++ b/pkg/plugin/framework/common/server_errors.go @@ -72,7 +72,7 @@ func ErrorStack(err error) *proto.Stack { stackTrace.Frames = append(stackTrace.Frames, &proto.StackFrame{ File: location.File, - Line: int32(location.Line), + Line: location.Line, Function: location.Function, }) }