Skip to content

Commit

Permalink
Merge pull request vmware-archive#4 from garg-amit/patch-1
Browse files Browse the repository at this point in the history
Fixed SSL Exception1
  • Loading branch information
sheribyrne authored Jul 19, 2021
2 parents a950a86 + 70392de commit 7638789
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/crest/utils/get_common_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ def get_driver():

def check_url():
try:
response = requests.get(self.url)
response = requests.get(self.url, verify=False)
logging.debug("URL is valid and exists on the internet")
return True
except requests.ConnectionError as exception:
logging.error("URL does not exist on Internet")
return False
return False

0 comments on commit 7638789

Please sign in to comment.