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 <[email protected]> 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
