From ed792b07b609805e28bda12b92d2af3b8f9745b8 Mon Sep 17 00:00:00 2001 From: ck9 <0926cookie@gmail.com> Date: Sat, 4 Nov 2023 20:59:07 +0900 Subject: [PATCH] =?UTF-8?q?slp=20v0.2.0=E3=81=AB=E5=AF=BE=E5=BF=9C=20slp?= =?UTF-8?q?=20->=20slp=20my?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/extproc/slp/processor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/extproc/slp/processor.go b/internal/extproc/slp/processor.go index d735250..d00c1ba 100644 --- a/internal/extproc/slp/processor.go +++ b/internal/extproc/slp/processor.go @@ -25,7 +25,7 @@ func (p *processor) Process(snapshot *collect.Snapshot) (io.ReadCloser, error) { return nil, fmt.Errorf("failed to find snapshot body: %w", err) } - cmd := exec.Command("slp", "--config", p.confPath, "--output", "standard", "--format", "tsv", "--file", bodyPath) + cmd := exec.Command("slp", "my", "--config", p.confPath, "--output", "standard", "--format", "tsv", "--file", bodyPath) res, err := cmd.Output() if err != nil {