File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,11 +7,12 @@ from weaviate.backup.executor import (
77 BackupStatusReturn ,
88 BackupConfigCreate ,
99 BackupConfigRestore ,
10+ _BackupExecutor ,
1011)
1112from weaviate .backup .backup_location import BackupLocationType
1213from weaviate .connect .v4 import ConnectionAsync
1314
14- class _BackupAsync (_BackupBase [ConnectionAsync ]):
15+ class _BackupAsync (_BackupExecutor [ConnectionAsync ]):
1516 """Backup class used to schedule and/or check the status of a backup process of Weaviate objects."""
1617
1718 async def cancel (
Original file line number Diff line number Diff line change @@ -7,11 +7,12 @@ from weaviate.backup.executor import (
77 BackupStatusReturn ,
88 BackupConfigCreate ,
99 BackupConfigRestore ,
10+ _BackupExecutor ,
1011)
1112from weaviate .backup .backup_location import BackupLocationType
1213from weaviate .connect .v4 import ConnectionSync
1314
14- class _Backup (_BackupBase [ConnectionSync ]):
15+ class _Backup (_BackupExecutor [ConnectionSync ]):
1516 """Backup class used to schedule and/or check the status of a backup process of Weaviate objects."""
1617
1718 def cancel (
You can’t perform that action at this time.
0 commit comments