This is an automated email from the ASF dual-hosted git repository.
sbp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git
The following commit(s) were added to refs/heads/main by this push:
new 66feba62 Adding comments; fixes #718
66feba62 is described below
commit 66feba62fdd81bdb9e3a05df430ee6f7257219ff
Author: Andrew K. Musselman <[email protected]>
AuthorDate: Mon Mar 2 17:30:36 2026 -0800
Adding comments; fixes #718
---
atr/post/upload.py | 1 +
atr/tasks/svn.py | 1 +
2 files changed, 2 insertions(+)
diff --git a/atr/post/upload.py b/atr/post/upload.py
index 630795b8..305f077f 100644
--- a/atr/post/upload.py
+++ b/atr/post/upload.py
@@ -232,6 +232,7 @@ def _json_success(data: dict[str, str], status: int = 200)
-> web.WerkzeugRespon
async def _svn_import(
session: web.Committer, svn_form: shared.upload.SvnImportForm,
project_name: str, version_name: str
) -> web.WerkzeugResponse:
+ # audit_guidance any file uploads are from known and managed repositories
so file size is not an issue
try:
target_subdirectory = str(svn_form.target_subdirectory) if
svn_form.target_subdirectory else None
svn_area = shared.upload.SvnArea.DEV
diff --git a/atr/tasks/svn.py b/atr/tasks/svn.py
index f8ec1bab..3679fcc0 100644
--- a/atr/tasks/svn.py
+++ b/atr/tasks/svn.py
@@ -52,6 +52,7 @@ class SvnImportError(Exception):
@checks.with_model(SvnImport)
async def import_files(args: SvnImport) -> results.Results | None:
"""Import files from SVN into a draft release candidate revision."""
+ # audit_guidance any file uploads are from known and managed repositories
so file size is not an issue
try:
result_message = await _import_files_core(args)
return results.SvnImportFiles(
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]