libstore: remove FileTransferRequest::tries

it's never set, and then only used internally. *once*.

Change-Id: I32585b1821e979f3ebb53b794ba0d1f576126b92
This commit is contained in:
eldritch horrors
2024-10-26 21:42:35 +00:00
parent af27d1ecd8
commit 6c2609c5f9
2 changed files with 2 additions and 2 deletions
+2 -1
View File
@@ -56,6 +56,7 @@ struct curlFileTransfer : public FileTransfer
std::string statusMsg;
unsigned int attempt = 0;
const size_t tries = fileTransferSettings.tries;
/* Don't start this download until the specified time point
has been reached. */
@@ -438,7 +439,7 @@ struct curlFileTransfer : public FileTransfer
sink, we can only retry if the server supports
ranged requests. */
if (err == Transient
&& attempt < request.tries
&& attempt < tries
&& (!this->dataCallback
|| writtenToSink == 0
|| (acceptRanges && encoding.empty())))
-1
View File
@@ -59,7 +59,6 @@ struct FileTransferRequest
std::string expectedETag;
bool verifyTLS = true;
bool head = false;
size_t tries = fileTransferSettings.tries;
FileTransferRequest(std::string_view uri)
: uri(uri) { }