libstore: remove FileTransferRequest::tries
it's never set, and then only used internally. *once*. Change-Id: I32585b1821e979f3ebb53b794ba0d1f576126b92
This commit is contained in:
@@ -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())))
|
||||
|
||||
@@ -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) { }
|
||||
|
||||
Reference in New Issue
Block a user