pespin submitted this change.
1 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
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(-)
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 change 38680. To unsubscribe, or for help writing mail filters, visit settings.