1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-24 07:01:59 +00:00

remove deprecated --remote-buffer

--remote-buffer is deprecated since 1.2.

there is --upload-buffer for the same purpose.
This commit is contained in:
Thomas Waldmann 2022-07-02 22:09:55 +02:00
parent 1b88eb67e0
commit 0dac106812

View file

@ -2833,7 +2833,6 @@ def do_subcommand_help(self, parser, args):
def preprocess_args(self, args):
deprecations = [
# ('--old', '--new' or None, 'Warning: "--old" has been deprecated. Use "--new" instead.'),
('--remote-buffer', None, 'Warning: "--remote-buffer" has been deprecated. Use --upload-buffer instead.'),
]
for i, arg in enumerate(args[:]):
for old_name, new_name, warning in deprecations:
@ -3037,8 +3036,6 @@ def define_common_options(add_common_option):
help='use PATH as borg executable on the remote (default: "borg")')
add_common_option('--upload-ratelimit', metavar='RATE', dest='upload_ratelimit', type=int,
help='set network upload rate limit in kiByte/s (default: 0=unlimited)')
add_common_option('--remote-buffer', metavar='UPLOAD_BUFFER', dest='upload_buffer', type=int,
help='deprecated, use ``--upload-buffer`` instead')
add_common_option('--upload-buffer', metavar='UPLOAD_BUFFER', dest='upload_buffer', type=int,
help='set network upload buffer size in MiB. (default: 0=no buffer)')
add_common_option('--consider-part-files', dest='consider_part_files', action='store_true',