DaanHoogland commented on a change in pull request #2447: Add retry logic to
direct download and checksum, also refactoring
URL: https://github.com/apache/cloudstack/pull/2447#discussion_r166403867
##########
File path:
server/src/org/apache/cloudstack/direct/download/DirectDownloadManagerImpl.java
##########
@@ -167,10 +210,22 @@ public void downloadTemplate(long templateId, long
poolId, long hostId) {
DownloadProtocol protocol = getProtocolFromUrl(url);
DirectDownloadCommand cmd =
getDirectDownloadCommandFromProtocol(protocol, url, templateId, to, checksum,
headers);
- Answer answer = agentManager.easySend(hostId, cmd);
- if (answer == null || !answer.getResult()) {
- throw new CloudRuntimeException("Host " + hostId + " could not
download template " +
- templateId + " on pool " + poolId);
+
+ boolean downloaded = false;
Review comment:
this can be a new method, please
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services