Skip to content

Commit

Permalink
pass SSL verification from settings
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalGawor committed Aug 19, 2024
1 parent ec87605 commit 7a9aea8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dogui/dogui/views_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ def home(request: HttpRequest) -> HttpResponse:
pid_form: PIDForm() = PIDForm(request.GET)

all_repo_status_url = API_NETLOC + "/repostatus/"
all_repo_status_response = requests.get(all_repo_status_url)
all_repo_status_response = requests.get(all_repo_status_url,
verify=settings.VERIFY_SSL)

logging.critical("STATUS")
logging.critical(all_repo_status_response)
Expand Down

0 comments on commit 7a9aea8

Please sign in to comment.