Skip to content

Commit 0e37de9

Browse files
committed
asd
1 parent d716a9c commit 0e37de9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/s3perf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ async function workers_func() {
164164
}
165165

166166
async function init_list_existing() {
167-
console.log('Listing objects in bucket', argv.bucket, 'prefix', argv.prefix);
167+
console.log('Listing existing objects in bucket', argv.bucket, 'prefix', argv.prefix);
168168
_list_objects = await list_fanout(argv.prefix);
169-
if (!_list_objects.length) throw new Error('No existing objects found');
169+
if (!_list_objects.length) throw new Error(`No existing objects found in prefix ${argv.prefix}`);
170170
console.log('Got', _list_objects.length, 'objects');
171171
}
172172

0 commit comments

Comments
 (0)