From 826f1d989da63a4509fe9d409121b1733e52cf08 Mon Sep 17 00:00:00 2001 From: Juha Hyttinen Date: Thu, 5 Mar 2020 12:59:03 +0200 Subject: [PATCH] Don't make rmr stub check if there is none of them Change-Id: I95c1f35c538ec51575a748b09616a1c80e32cf14 Signed-off-by: Juha Hyttinen --- pkg/teststub/controlRmrStub.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/teststub/controlRmrStub.go b/pkg/teststub/controlRmrStub.go index a8c861f..a01a0a5 100644 --- a/pkg/teststub/controlRmrStub.go +++ b/pkg/teststub/controlRmrStub.go @@ -147,6 +147,10 @@ func RmrStubControlWaitAlive(seconds int, mtype int, rmr xapptweaks.XAppWrapperI params.Xid = "TESTPING" params.Mbuf = nil + if len(allRmrStubs) == 0 { + rmr.GetLogger().Info("No rmr stubs so no need to wait those to be alive") + return true + } status := false i := 1 for ; i <= seconds*2 && status == false; i++ { -- 2.16.6