This is an automated email from the ASF dual-hosted git repository.
rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/master by this push:
new fd4309c server: increase POST timeout for local template upload
(#3356)
fd4309c is described below
commit fd4309cc3dc3c001a9cf77d89250af648158b5f0
Author: Andrija Panic <[email protected]>
AuthorDate: Fri May 31 06:02:59 2019 +0200
server: increase POST timeout for local template upload (#3356)
Increase template upload POST timeout for local template upload to 1 hr or
60 minutes.
---
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..b5ee6b5 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", "60",
"Time (in minutes) to wait before abandoning volume upload using
HTTP POST request", true);
@Override