mirror of https://github.com/apache/jclouds.git
Create Payload per thread in testPutBlobParallel
Fixes a regression from 45bcc3ce22
.
This commit is contained in:
parent
45bcc3ce22
commit
a845471b88
|
@ -119,8 +119,6 @@ public class BaseBlobIntegrationTest extends BaseBlobStoreIntegrationTest {
|
||||||
@Test(groups = { "integration", "live" })
|
@Test(groups = { "integration", "live" })
|
||||||
public void testPutBlobParallel() throws Exception {
|
public void testPutBlobParallel() throws Exception {
|
||||||
final ByteSource expected = createTestInput(32 * 1024);
|
final ByteSource expected = createTestInput(32 * 1024);
|
||||||
final Payload testPayload = Payloads.newByteSourcePayload(expected);
|
|
||||||
testPayload.getContentMetadata().setContentType("image/png");
|
|
||||||
|
|
||||||
final String container = getContainerName();
|
final String container = getContainerName();
|
||||||
try {
|
try {
|
||||||
|
@ -131,7 +129,9 @@ public class BaseBlobIntegrationTest extends BaseBlobStoreIntegrationTest {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Void call() throws Exception {
|
public Void call() throws Exception {
|
||||||
Blob blob = view.getBlobStore().blobBuilder(name).payload(testPayload).contentLength(expected.size()).build();
|
Payload payload = Payloads.newByteSourcePayload(expected);
|
||||||
|
payload.getContentMetadata().setContentType("image/png");
|
||||||
|
Blob blob = view.getBlobStore().blobBuilder(name).payload(payload).contentLength(expected.size()).build();
|
||||||
view.getBlobStore().putBlob(container, blob);
|
view.getBlobStore().putBlob(container, blob);
|
||||||
|
|
||||||
assertConsistencyAwareBlobExists(container, name);
|
assertConsistencyAwareBlobExists(container, name);
|
||||||
|
|
Loading…
Reference in New Issue