Commit 52340037 authored by Robert Schmidt's avatar Robert Schmidt

Remove try-except block from Ping_common

parent fabe8494
...@@ -504,7 +504,6 @@ class OaiCiTest(): ...@@ -504,7 +504,6 @@ class OaiCiTest():
lock.release() lock.release()
def Ping_common(self, lock, statusQueue,EPC, ue, RAN): def Ping_common(self, lock, statusQueue,EPC, ue, RAN):
try:
# Launch ping on the EPC side (true for ltebox and old open-air-cn) # Launch ping on the EPC side (true for ltebox and old open-air-cn)
# But for OAI-Rel14-CUPS, we launch from python executor # But for OAI-Rel14-CUPS, we launch from python executor
ping_status = 0 ping_status = 0
...@@ -627,9 +626,6 @@ class OaiCiTest(): ...@@ -627,9 +626,6 @@ class OaiCiTest():
statusQueue.put(ue.getIP()) statusQueue.put(ue.getIP())
statusQueue.put(qMsg) statusQueue.put(qMsg)
lock.release() lock.release()
except:
logging.debug('exit from Ping_Common except')
os.kill(os.getppid(),signal.SIGUSR1)
def PingNoS1_wrong_exit(self, qMsg,HTML): def PingNoS1_wrong_exit(self, qMsg,HTML):
message = 'OAI UE ping result\n{qMsg}' message = 'OAI UE ping result\n{qMsg}'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment