Skip to content

Commit 69f0b3f

Browse files
authored
Merge pull request #3180 from uw-it-aca/qa
Address InCommon RSA Server CA 2 SSLCertVerificationError
2 parents 52fde07 + 9a0f3fa commit 69f0b3f

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG DJANGO_CONTAINER_VERSION=2.0.7
1+
ARG DJANGO_CONTAINER_VERSION=2.0.8
22
FROM us-docker.pkg.dev/uwit-mci-axdd/containers/django-container:${DJANGO_CONTAINER_VERSION} AS app-prewebpack-container
33

44
USER root

myuw/dao/canvas.py

+2-6
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,13 @@ def set_section_canvas_course_urls(canvas_active_enrollments, schedule,
5656
# no independent study instructor.
5757
# If independent_study_instructor being None occurs
5858
# in current or future quarter, likely is a data error.
59-
log_err(
60-
logger, f"canvas_course_sis_id of {section_label} {ex}",
61-
traceback, request)
59+
logger.warning(f"canvas_course_sis_id of {section_label} {ex}")
6260
continue
6361
try:
6462
cid = section.canvas_section_sis_id()
6563
canvas_sis_ids[cid] = section.primary_section_label()
6664
except Exception as ex:
67-
log_err(
68-
logger, f"canvas_section_sis_id of {section_label} {ex}",
69-
traceback, request)
65+
logger.warning(f"canvas_section_sis_id of {section_label} {ex}")
7066
logger.debug({'canvas_sis_ids': canvas_sis_ids})
7167

7268
canvas_links = {} # primary_section_label: canvas course_url

0 commit comments

Comments
 (0)