From 5deffc453c3729492e1373c68e99b158f08e12b3 Mon Sep 17 00:00:00 2001 From: Tugdual Saunier Date: Thu, 12 Jun 2025 10:09:35 +0200 Subject: [PATCH] refacor: remove unnecessary stack wrapping --- local/php/php_server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local/php/php_server.go b/local/php/php_server.go index 56adacd0..24c1c1f5 100644 --- a/local/php/php_server.go +++ b/local/php/php_server.go @@ -200,7 +200,7 @@ func (p *Server) Start(ctx context.Context, pidFile *pid.PidFile) (*pid.PidFile, p.StoppedChan <- true }() - return errors.Wrap(errors.WithStack(runner.Run()), "PHP server exited unexpectedly") + return errors.Wrap(runner.Run(), "PHP server exited unexpectedly") }, nil }