X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fapp_test%2Frun_multi_test.ksh;fp=test%2Fapp_test%2Frun_multi_test.ksh;h=fa476ec6968155c90463c2cf11204e6dc53118f3;hb=4441a79be9a6f9d1b4ec0111eb0030a8f2e3e5e5;hp=4e1a7a3491164c42fbf787db18aa34f01d055ca5;hpb=13114d18807827cab7b630e52250efab6d20d2c0;p=ric-plt%2Flib%2Frmr.git diff --git a/test/app_test/run_multi_test.ksh b/test/app_test/run_multi_test.ksh index 4e1a7a3..fa476ec 100644 --- a/test/app_test/run_multi_test.ksh +++ b/test/app_test/run_multi_test.ksh @@ -39,10 +39,13 @@ # The sender and receivers are run asynch. Their exit statuses are captured in a -# file in order for the 'main' to pick them up easily. +# file in order for the 'main' to pick them up easily. For the multi test the +# async connect must be DISABLED because in some environments (um, jenkins) the +# session connect time lags enough that the first message can be dropped silently. +# It doesn't happen all of the time, but frequently enough to be annoying. # function run_sender { - ./sender $nmsg $delay + RMR_ASYNC_CONN=0 ./sender $nmsg $delay echo $? >/tmp/PID$$.src # must communicate state back via file b/c asynch }