fix(agent): Ensure import of required package for pprof support (#15054)

Co-authored-by: Josh Powers <powersj@fastmail.com>
This commit is contained in:
Timofei Bredov 2024-04-02 10:35:34 +03:00 committed by GitHub
parent 4303360442
commit 6cd4821b90
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@ package main
import (
"log"
"net/http"
_ "net/http/pprof" //nolint:gosec // Import for pprof, only enabled via CLI flag
"strings"
"time"
)