File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed 
.github/actions/get-latest-upstream Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 2525          RELEASE=$(curl -s -H "$AUTH_HEADER" https://api.github.com/repos/SeleniumHQ/selenium/releases | jq -r '[.[] | select(.prerelease == false)] | .[0].tag_name') 
2626        else 
2727          echo "Getting the latest Nightly release." 
28-           RELEASE=$(curl -s -H "$AUTH_HEADER" https://api.github.com/repos/SeleniumHQ/selenium/releases | jq -r '[.[] | select(.prerelease == true)] | .[0].tag_name') 
28+           RELEASE=$(curl -s -H "$AUTH_HEADER" https://api.github.com/repos/SeleniumHQ/selenium/releases | jq -r '[.[] | select(.prerelease == true)] | .[0].tag_name' || echo "" ) 
2929          if [ -z "${RELEASE}" ]; then 
3030            echo "Nightly release not found, getting the latest stable release." 
3131            RELEASE=$(curl -s -H "$AUTH_HEADER" https://api.github.com/repos/SeleniumHQ/selenium/releases | jq -r '[.[] | select(.prerelease == false)] | .[0].tag_name') 
Original file line number Diff line number Diff line change 273273    fi 
274274    prev_session_id=$session_id 
275275  done 
276+   stop_if_recording_inprogress
276277  echo  " $( date -u +" ${ts_format} " ) ${process_name} ] - Node API is not responding now, exiting..." 
277278fi 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments