mirror of https://github.com/apache/cloudstack.git
- CLOUDSTACK-3229: Passes the bucket name as "bucket" into the s3xen
plugin
This commit is contained in:
parent
980b227817
commit
ceed152426
|
|
@ -7388,7 +7388,7 @@ public abstract class CitrixResourceBase implements ServerResource, HypervisorRe
|
|||
serializeProperties(s3, S3Utils.ClientOptions.class));
|
||||
parameters.addAll(Arrays.asList("operation", "put", "directory",
|
||||
dir, "filename", filename, "iSCSIFlag",
|
||||
iSCSIFlag.toString(), "key", key));
|
||||
iSCSIFlag.toString(), "bucket", s3.getBucketName(), "key", key));
|
||||
final String result = callHostPluginAsync(connection, "s3xen",
|
||||
"s3", wait,
|
||||
parameters.toArray(new String[parameters.size()]));
|
||||
|
|
|
|||
|
|
@ -1129,7 +1129,7 @@ public class XenServerStorageProcessor implements StorageProcessor {
|
|||
serializeProperties(s3, S3Utils.ClientOptions.class));
|
||||
parameters.addAll(Arrays.asList("operation", "put", "directory",
|
||||
dir, "filename", filename, "iSCSIFlag",
|
||||
iSCSIFlag.toString(), "key", key));
|
||||
iSCSIFlag.toString(), "bucket", s3.getBucketName(), "key", key));
|
||||
final String result = hypervisorResource.callHostPluginAsync(connection, "s3xen",
|
||||
"s3", wait,
|
||||
parameters.toArray(new String[parameters.size()]));
|
||||
|
|
|
|||
Loading…
Reference in New Issue