Parcourir la source

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

tags/0.6.0-preview-workflow.1
Bowen Liang il y a 1 an
Parent
révision
d018e279f8
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      api/commands.py

+ 1
- 1
api/commands.py Voir le fichier

@@ -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:

Chargement…
Annuler
Enregistrer