pub const COPY_TIMEOUT_BASE_SECS: u64 = 60;
Base timeout for copy operations (seconds). The actual timeout is computed as base + (file_size / 10MB) * per_10mb, capped at COPY_TIMEOUT_CAP_SECS.
base + (file_size / 10MB) * per_10mb
COPY_TIMEOUT_CAP_SECS