vtlab-generic-functions 1.0.11 → 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/axios/logs.js +1 -1
- package/package.json +1 -1
package/axios/logs.js
CHANGED
|
@@ -64,7 +64,7 @@ const processPayload = async (payload) => {
|
|
|
64
64
|
// get bucket name from secrets manager
|
|
65
65
|
let bucket = await secretsManager.get('s3LogsBucket');
|
|
66
66
|
console.log("bucket", bucket);
|
|
67
|
-
let signedURL = s3bucket.generatePresignedUrl(bucket, path);
|
|
67
|
+
let signedURL = await s3bucket.generatePresignedUrl(bucket, path);
|
|
68
68
|
console.log("signedURL", signedURL)
|
|
69
69
|
|
|
70
70
|
// Update the response to be the presigned URL
|