diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2023-03-07 10:13:19 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-03-07 17:47:45 +0000 |
commit | 9abba11a9434e152f35a863de3e7631fe3a00070 (patch) | |
tree | 5a23d41d9349741b18b2c3971d9ff04fe8cbaf99 /extras/hs-test/vppinstance.go | |
parent | 21121f60d2ffd66d5c28d989572fdb68653bc94c (diff) |
hs-test: fix envoy test
Type: test
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Change-Id: I776e0f1f7ea700439d1fe6a598772776ae6a1493
Diffstat (limited to 'extras/hs-test/vppinstance.go')
-rw-r--r-- | extras/hs-test/vppinstance.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extras/hs-test/vppinstance.go b/extras/hs-test/vppinstance.go index 1c28ec920b7..c6771f697f8 100644 --- a/extras/hs-test/vppinstance.go +++ b/extras/hs-test/vppinstance.go @@ -2,7 +2,6 @@ package main import ( "fmt" - "github.com/edwarnicke/exechelper" "os" "os/exec" "os/signal" @@ -10,6 +9,8 @@ import ( "syscall" "time" + "github.com/edwarnicke/exechelper" + "go.fd.io/govpp" "go.fd.io/govpp/api" "go.fd.io/govpp/binapi/af_packet" @@ -121,8 +122,7 @@ func (vpp *VppInstance) start() error { signal.Notify(sig, syscall.SIGINT) cont := make(chan bool, 1) go func() { - sig := <-sig - fmt.Println(sig) + <-sig cont <- true }() |