fix: typo $ mark in logs of vdb migrate command (#2901)

This commit is contained in:
Bowen Liang 2024-03-19 22:21:58 +08:00 committed by GitHub
parent 11636bc7c7
commit d018e279f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -254,7 +254,7 @@ def migrate_knowledge_vector_database():
for dataset in datasets:
total_count = total_count + 1
click.echo(f'Processing the {total_count} dataset {dataset.id}. '
+ f'{create_count} created, ${skipped_count} skipped.')
+ f'{create_count} created, {skipped_count} skipped.')
try:
click.echo('Create dataset vdb index: {}'.format(dataset.id))
if dataset.index_struct_dict: