mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-25 11:00:35 +00:00
When a backup upload is aborted due to instance shutdown, change the log level from ERROR to INFO since this is expected behavior. Previously, `abort_requested_exception` during upload would trigger an ERROR log, causing test failures since error logs indicate unexpected issues. This change: - Catches `abort_requested_exception` specifically during file uploads - Logs these shutdown-triggered aborts at INFO level instead of ERROR - Aligns with how `abort_requested_exception` is handled elsewhere in the service This prevents false test failures while still informing administrators about aborted uploads during shutdown. Fixes scylladb/scylladb#22391 Signed-off-by: Kefu Chai <kefu.chai@scylladb.com> Closes scylladb/scylladb#22995