You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by an...@apache.org on 2019/05/24 15:24:33 UTC

[cloudstack] branch andrijapanicsb-patch-1 created (now d4aace1)

This is an automated email from the ASF dual-hosted git repository.

andrijapanic pushed a change to branch andrijapanicsb-patch-1
in repository https://gitbox.apache.org/repos/asf/cloudstack.git.


      at d4aace1  Increase POST timeout for local template upload

This branch includes the following new commits:

     new d4aace1  Increase POST timeout for local template upload

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[cloudstack] 01/01: Increase POST timeout for local template upload

Posted by an...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

andrijapanic pushed a commit to branch andrijapanicsb-patch-1
in repository https://gitbox.apache.org/repos/asf/cloudstack.git

commit d4aace1773aee560d0d7a065a074fd61f9e5d487
Author: Andrija Panic <45...@users.noreply.github.com>
AuthorDate: Fri May 24 17:24:20 2019 +0200

    Increase POST timeout for local template upload
---
 server/src/main/java/com/cloud/storage/ImageStoreUploadMonitorImpl.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/src/main/java/com/cloud/storage/ImageStoreUploadMonitorImpl.java b/server/src/main/java/com/cloud/storage/ImageStoreUploadMonitorImpl.java
index 10406b5..58d2ef7 100755
--- a/server/src/main/java/com/cloud/storage/ImageStoreUploadMonitorImpl.java
+++ b/server/src/main/java/com/cloud/storage/ImageStoreUploadMonitorImpl.java
@@ -110,7 +110,7 @@ public class ImageStoreUploadMonitorImpl extends ManagerBase implements ImageSto
 
     static final ConfigKey<Integer> UploadMonitoringInterval = new ConfigKey<Integer>("Advanced", Integer.class, "upload.monitoring.interval", "60",
             "Interval (in seconds) to check the status of volumes that are uploaded using HTTP POST request", true);
-    static final ConfigKey<Integer> UploadOperationTimeout = new ConfigKey<Integer>("Advanced", Integer.class, "upload.operation.timeout", "10",
+    static final ConfigKey<Integer> UploadOperationTimeout = new ConfigKey<Integer>("Advanced", Integer.class, "upload.operation.timeout", "300",
             "Time (in minutes) to wait before abandoning volume upload using HTTP POST request", true);
 
     @Override