s3client: adding missing promise call to trigger

This commit is contained in:
Hunter Miller 2022-03-31 09:42:10 -05:00
parent 64275ef6f2
commit 6dc763a7d1

View File

@ -19,7 +19,7 @@ export default class S3Client implements StorageClient {
this.client = new this.S3(this.config);
}
return this.client.upload(params);
return this.client.upload(params).promise();
}
upload(params: UploadParams): StorageUpload {