X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=Automation%2FTests%2FScripts%2Ffind_rmr_message.py;h=e75d9c68da04a9d587a227d49e1dfd161ad1e380;hb=refs%2Fchanges%2F01%2F2101%2F1;hp=1d75e8140e1709c123555d3f366b34e668bcba22;hpb=de19068aaa1f3d2b415cd960106121ceb167aaa9;p=ric-plt%2Fe2mgr.git diff --git a/Automation/Tests/Scripts/find_rmr_message.py b/Automation/Tests/Scripts/find_rmr_message.py index 1d75e81..e75d9c6 100644 --- a/Automation/Tests/Scripts/find_rmr_message.py +++ b/Automation/Tests/Scripts/find_rmr_message.py @@ -15,6 +15,10 @@ # limitations under the License. # ############################################################################## +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# def verify_logs(directory,filename,mtype,meid): @@ -27,8 +31,12 @@ def verify_logs(directory,filename,mtype,meid): for l in f: - if l.find(mtype) > 0 and l.find(meid) > 0: - return True + if (meid is not None): + if l.find(mtype) > 0 and l.find(meid) > 0: + return True + else: + if l.find(mtype) > 0: + return True return False