@engine9-io/input-tools 1.4.0 → 1.4.1
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/file/S3.js +1 -1
- package/package.json +1 -1
package/file/S3.js
CHANGED
@@ -192,7 +192,7 @@ Worker.prototype.listAll = async function ({ directory }) {
|
|
192
192
|
ContinuationToken,
|
193
193
|
// Delimiter: '/',
|
194
194
|
});
|
195
|
-
debug(`Sending command with ContinuationToken ${ContinuationToken}`);
|
195
|
+
debug(`Sending List command with prefix ${Prefix} with ContinuationToken ${ContinuationToken}`);
|
196
196
|
// eslint-disable-next-line no-await-in-loop
|
197
197
|
const result = await s3Client.send(command);
|
198
198
|
const newFiles = (result.Contents?.map((d) => `s3://${Bucket}/${d.Key}`) || []);
|