15df1e86bb25502cfbb83f776a9063133a672036
gperez2
  Mon Jul 22 09:43:47 2024 -0700
Deleting an unnecessary step that removes files, refs #32593

diff --git src/utils/qa/checkSessionsFromRR.py src/utils/qa/checkSessionsFromRR.py
index d1fb066..707b9af 100755
--- src/utils/qa/checkSessionsFromRR.py
+++ src/utils/qa/checkSessionsFromRR.py
@@ -148,32 +148,30 @@
        #Pass if session load error is can not find any trackDb tables for hub_ ((hub id issue))
         elif hubid_error_dev in checkLoad:
             pass
         else: #If session does not contains strings to check, add error to list 
              error_list.append('error')
     except subprocess.CalledProcessError as e:
         #If session fails to curl, add error to list 
         error_list.append('error')
     #If an error is present in the error list, save the session URL to variable 
     if 'error' in error_list:
         sessionLoad=session
     else: #If no error is present in the error list, set variable that session loaded
         sessionLoad='loads'
         session_dir=session.split('genecats.gi.ucsc.edu')[1]
         session_path=myDir+session_dir
-        #Uncomment the line below to actually remove the session files
-        os.system('rm '+session_path)
    
     return sessionLoad
 
 def makeURL(session, url_txt, count):
     """Creates a text file that appends crash sessions"""
     failed_session=open(url_txt, 'a')
     failed_session.write(str(datetime.now().strftime("%Y-%m-%d %H:%M:%S"))+'\t'+str(session)+'\n')
     failed_session.close()
     return session
 
 def output_if_file_exists(file_path):
     """Outputs if text file was created for crash sessions"""
     if os.path.exists(file_path):
         print("This cronjob outputs sessions that crash on hgwbeta or hgwdev. The session URLs have '#' in ...session_settings_#.txt which is the random number session tested")
         with open(file_path, 'r') as file: