Browse Source

fix: better object store write error propagation

Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/54125/head
Robin Appelman 4 months ago
parent
commit
97efc95efc
  1. 2
      lib/private/Files/ObjectStore/ObjectStoreStorage.php

2
lib/private/Files/ObjectStore/ObjectStoreStorage.php

@ -543,7 +543,7 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common implements IChunkedFil
]
);
}
throw $ex; // make this bubble up
throw new GenericFileException('Error while writing stream to object store', 0, $ex);
}
if ($exists) {

Loading…
Cancel
Save