diff options
author | Maros Ondrejicka <maros.ondrejicka@pantheon.tech> | 2022-10-12 22:58:01 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2022-10-27 15:06:27 +0000 |
commit | 0db15758ed63db434621fef0777e0dd2062ed326 (patch) | |
tree | b45cd748fb47148eb5442a2f50c31a9b78f695f2 /extras/hs-test/main.go | |
parent | d810a6e218e9af3c3bccd58c9a2d925a7f12242e (diff) |
vcl: register workers when reattaching to vpp
Type: improvement
Signed-off-by: Maros Ondrejicka <maros.ondrejicka@pantheon.tech>
Change-Id: I82a286e2872338974c1930138c30db78103ae499
Diffstat (limited to 'extras/hs-test/main.go')
-rwxr-xr-x | extras/hs-test/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/hs-test/main.go b/extras/hs-test/main.go index 10149178ce6..f54b6c4d910 100755 --- a/extras/hs-test/main.go +++ b/extras/hs-test/main.go @@ -77,7 +77,7 @@ func writeSyncFile(res *ActionResult) error { defer f.Close() f.Write([]byte(str)) } else { - return fmt.Errorf("sync file exists, delete the file frst") + return fmt.Errorf("sync file exists, delete the file first") } return nil } @@ -108,7 +108,7 @@ func ActionResultWithStderr(s string) ActionResultOptionFn { func ActionResultWithStdout(s string) ActionResultOptionFn { return func(res *ActionResult) { - res.ErrOutput = s + res.StdOutput = s } } |