File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -464,7 +464,6 @@ def test_backup_and_restore_with_collection_and_config_1_24_x(
464464 wait_for_completion = True ,
465465 config = BackupConfigCreate (
466466 cpu_percentage = 60 ,
467- chunk_size = 256 ,
468467 compression_level = BackupCompressionLevel .BEST_SPEED ,
469468 ),
470469 )
Original file line number Diff line number Diff line change @@ -62,7 +62,12 @@ def _to_dict(self) -> Dict[str, Any]:
6262class BackupConfigCreate (_BackupConfigBase ):
6363 """Options to configure the backup when creating a backup."""
6464
65- ChunkSize : Optional [int ] = Field (default = None , alias = "chunk_size" )
65+ ChunkSize : Optional [int ] = Field (
66+ default = None ,
67+ alias = "chunk_size" ,
68+ description = "DEPRECATED: This parameter no longer has any effect." ,
69+ exclude = True ,
70+ )
6671 CompressionLevel : Optional [BackupCompressionLevel ] = Field (
6772 default = None , alias = "compression_level"
6873 )
You can’t perform that action at this time.
0 commit comments