archupsg03 commented on this pull request.
> + super.setup();
+ for (String regionId : regions) {
+ boolean created =
getApi().getContainerApi(regionId).create(defaultContainerName);
+ if (!created) {
+ deleteAllObjectsInContainer(regionId, defaultContainerName);
+ }
+ }
+
+ /* megOf1s = new byte[1024 * 1024];
+ megOf2s = new byte[1024 * 1024];
+
+ Arrays.fill(megOf1s, (byte) 1);
+ Arrays.fill(megOf2s, (byte) 2);*/
+
+ megOf1s = TestUtils.randomByteSource().slice(0, 1048576);
+ megOf2s = TestUtils.randomByteSource().slice(0, 1048576);
Done
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/1105#discussion_r118909541