This is an automated email from the ASF dual-hosted git repository.

assignuser pushed a commit to branch release-20.0.0-rc1
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit ffb18de90a8d22fd16b45be514d5ae38fe271e60
Author: Sutou Kouhei <[email protected]>
AuthorDate: Fri Apr 11 14:45:50 2025 +0900

    GH-46081: [Release] Don't generate needless `uploaded-files.txt` for Maven 
repository (#46082)
    
    ### Rationale for this change
    
    `uploaded-files.txt` is for Artifactory. Artifactory doesn't have the 
staging feature. So we emulate the feature by `uploaded-files.txt`.
    
    But Maven repository has the feature. So we don't need to generate 
`uploaded-files.txt`.
    
    ### What changes are included in this PR?
    
    Don't generate `uploaded-files.txt`.
    
    ### Are these changes tested?
    
    Yes.
    
    ### Are there any user-facing changes?
    
    No.
    * GitHub Issue: #46081
    
    Authored-by: Sutou Kouhei <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 dev/release/binary-task.rb | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dev/release/binary-task.rb b/dev/release/binary-task.rb
index 8e12a85a77..a5ffcfbcaa 100644
--- a/dev/release/binary-task.rb
+++ b/dev/release/binary-task.rb
@@ -1875,7 +1875,6 @@ APT::FTPArchive::Release::Description 
"#{apt_repository_description}";
                  upload_distribution_dir,
                  preserve: true,
                  verbose: verbose?)
-            write_uploaded_files(upload_distribution_dir)
             uploader =
               MavenRepositoryUploader.new(asf_user: asf_user,
                                           asf_password: asf_password,
@@ -2377,7 +2376,6 @@ APT::FTPArchive::Release::Description 
"#{apt_repository_description}";
                  upload_target_dir.to_s,
                  preserve: true,
                  verbose: verbose?)
-            write_uploaded_files(upload_target_dir)
 
             uploader = MavenRepositoryUploader.new(asf_user: asf_user,
                                                    asf_password: asf_password,

Reply via email to