diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 961fe46dc..2d7311e1d 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -144,4 +144,4 @@ jobs: fail_action: true allow_issue_writing: false rules_file_name: 'zap.conf' - cmd_options: '-I -d' + cmd_options: '-I' diff --git a/notifications_utils/request_helper.py b/notifications_utils/request_helper.py index 48776e69a..775101078 100644 --- a/notifications_utils/request_helper.py +++ b/notifications_utils/request_helper.py @@ -76,6 +76,7 @@ class ResponseHeaderMiddleware(object): if SPAN_ID_HEADER.lower() not in lower_existing_header_names: headers.append((SPAN_ID_HEADER, str(req.span_id))) + print(headers) return start_response(status, headers, exc_info) return self._app(environ, rewrite_response_headers)