You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-5618: Testing fix + script minor fixes.
- [fix] wrong cooking of .sh invoke string - [fix] restore_dbrm -> dbrm_restore, backup_dbrm -> dbrm_backup to use same naming in both python wrapper and mcs_backup_manager.sh - [fix] mathod of checking cmapi online or not in mcs_backup_manager.sh
This commit is contained in:
committed by
Alan Mologorsky
parent
460826748f
commit
c70d206afe
@ -21,9 +21,9 @@ app = typer.Typer(
|
||||
app.add_typer(cluster_app.app, name='cluster')
|
||||
app.add_typer(cmapi_app.app, name='cmapi')
|
||||
app.command()(backup_commands.backup)
|
||||
app.command('backup-dbrm')(backup_commands.backup_dbrm)
|
||||
app.command('backup-dbrm')(backup_commands.dbrm_backup)
|
||||
app.command()(restore_commands.restore)
|
||||
app.command('restore-dbrm')(restore_commands.restore_dbrm)
|
||||
app.command('restore-dbrm')(restore_commands.dbrm_restore)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
Reference in New Issue
Block a user