Page MenuHomePhabricator

D15179.id.diff
No OneTemporary

D15179.id.diff

diff --git a/src/applications/files/uploadsource/PhabricatorFileUploadSource.php b/src/applications/files/uploadsource/PhabricatorFileUploadSource.php
--- a/src/applications/files/uploadsource/PhabricatorFileUploadSource.php
+++ b/src/applications/files/uploadsource/PhabricatorFileUploadSource.php
@@ -92,21 +92,27 @@
$threshold = PhabricatorFileStorageEngine::getChunkThreshold();
- // If we don't know how large the file is, we're going to read some data
- // from it until we know whether it's a small file or not. This will give
- // us enough information to make a decision about chunking.
- $length = $this->getDataLength();
- if ($length === null) {
- $rope = $this->getRope();
- while ($this->readFileData()) {
- $length = $rope->getByteLength();
- if ($length > $threshold) {
- break;
+ if ($threshold === null) {
+ // If there are no chunk engines available, we clearly can't chunk the
+ // file.
+ $this->shouldChunk = false;
+ } else {
+ // If we don't know how large the file is, we're going to read some data
+ // from it until we know whether it's a small file or not. This will give
+ // us enough information to make a decision about chunking.
+ $length = $this->getDataLength();
+ if ($length === null) {
+ $rope = $this->getRope();
+ while ($this->readFileData()) {
+ $length = $rope->getByteLength();
+ if ($length > $threshold) {
+ break;
+ }
}
}
- }
- $this->shouldChunk = ($length > $threshold);
+ $this->shouldChunk = ($length > $threshold);
+ }
return $this->shouldChunk;
}

File Metadata

Mime Type
text/plain
Expires
Tue, Mar 18, 9:55 PM (4 d, 4 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7341704
Default Alt Text
D15179.id.diff (1 KB)

Event Timeline