CE-881 - Feedback from code review & continued QA testing

This commit is contained in:
2024-04-04 08:56:13 -05:00
parent ed9bf93986
commit 8da05b9ab9
18 changed files with 136 additions and 52 deletions

View File

@ -39,7 +39,7 @@ import com.kingsrook.qqq.backend.module.filesystem.s3.utils.S3UploadOutputStream
/*******************************************************************************
** (mass, streamed) storage action for filesystem module
** (mass, streamed) storage action for s3 module
*******************************************************************************/
public class S3StorageAction extends AbstractS3Action implements QStorageInterface
{

View File

@ -43,7 +43,8 @@ import static com.kingsrook.qqq.backend.core.logging.LogUtils.logPair;
/*******************************************************************************
** OutputStream implementation that knows how to stream data into a new S3 file.
**
** This will be done using a multipart-upload if the contents are > 5MB.
** This will be done using a multipart-upload if the contents are > 5MB - else
** just a 1-time-call to PutObject
*******************************************************************************/
public class S3UploadOutputStream extends OutputStream
{