backup sites: fix listing when status call errors

* fix backend to not retry in status call
* fix frontend to continue loading view if status errors
* fix connect-lastmile to show the exact path that is timing out
This commit is contained in:
Girish Ramakrishnan
2025-10-16 14:03:08 +02:00
parent 8aa5dc85af
commit d6a4dd6965
4 changed files with 8 additions and 11 deletions

View File

@@ -161,7 +161,7 @@ async function getAvailableSize(apiConfig) {
async function getStatus(apiConfig) {
assert.strictEqual(typeof apiConfig, 'object');
const s3 = createS3Client(apiConfig, { retryStrategy: RETRY_STRATEGY });
const s3 = createS3Client(apiConfig, { retryStrategy: null });
const listParams = {
Bucket: apiConfig.bucket,