pespin has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/35742?usp=email )


Change subject: NS_Emulation: expect altstep timeout entry only if timer is 
running
......................................................................

NS_Emulation: expect altstep timeout entry only if timer is running

Should fix the following log message:
NS_Emulation.ttcnpp:784 Timeout operation on timer Tns_alive failed: The timer 
is not started.

Change-Id: If1fae965659f73fde2508b0e9158099025fa65f2
---
M library/NS_Emulation.ttcnpp
1 file changed, 14 insertions(+), 2 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks 
refs/changes/42/35742/1

diff --git a/library/NS_Emulation.ttcnpp b/library/NS_Emulation.ttcnpp
index d1700f8..0ed022a 100644
--- a/library/NS_Emulation.ttcnpp
+++ b/library/NS_Emulation.ttcnpp
@@ -781,13 +781,13 @@
                }

                /* transition to DEAD if t_alive times out */
-               [] Tns_alive.timeout {
+               [Tns_alive.running] Tns_alive.timeout {
                        log("Tns-alive expired: changing to DEAD_BLOCKED + 
starting Tns-test");
                        f_change_state(NSVC_S_DEAD_BLOCKED);
                        Tns_test.start;
                }

-               [] Tns_test.timeout {
+               [Tns_test.running] Tns_test.timeout {
                        log("Tns-test expired: sending NS-ALIVE");
                        f_sendAlive();
                }

--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/35742?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: If1fae965659f73fde2508b0e9158099025fa65f2
Gerrit-Change-Number: 35742
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <[email protected]>
Gerrit-MessageType: newchange

Reply via email to