pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38680?usp=email )
Change subject: RUA_Emulation: Add missing msg component destination
......................................................................
RUA_Emulation: Add missing msg component destination
Seen while running lots of components concurrently:
"RUA_Emulation.ttcn:315 Dynamic test case error: Port CLIENT has more
than one active connections. Message can be sent on it only with
explicit addressing."
Change-Id: Ief257969a451f2d11ad7619fb97af16d7dd7e199
---
M library/rua/RUA_Emulation.ttcn
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/80/38680/1
diff --git a/library/rua/RUA_Emulation.ttcn b/library/rua/RUA_Emulation.ttcn
index 26c2da7..8b28a98 100644
--- a/library/rua/RUA_Emulation.ttcn
+++ b/library/rua/RUA_Emulation.ttcn
@@ -312,7 +312,7 @@
}
/* notify user of disconnect */
if (CLIENT.checkstate("Connected")) {
- CLIENT.send(RUA_Disc_Ind:{cause});
+ CLIENT.send(RUA_Disc_Ind:{cause}) to vc_conn;
}
f_conn_table_del(context_id);
}
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38680?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Ief257969a451f2d11ad7619fb97af16d7dd7e199
Gerrit-Change-Number: 38680
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>