mirror of https://github.com/apache/jclouds.git
avoid stackoverflow on multipart upload
This commit is contained in:
parent
82673e0dd5
commit
de1e8a7ce3
|
@ -126,7 +126,8 @@ public class SequentialMultipartUploadStrategy implements MultipartUploadStrateg
|
||||||
throw rtex;
|
throw rtex;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return ablobstore.putBlob(container, blob, options);
|
// TODO: find a way to disable multipart. if we pass the original options, it goes into a stack overflow
|
||||||
|
return ablobstore.putBlob(container, blob, PutOptions.NONE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue