From: Joseph Sutton Date: Thu, 23 Nov 2023 07:56:49 +0000 (+1300) Subject: python: Remove unused parameter ‘backend_store_size’ X-Git-Tag: talloc-2.4.2~307 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=efaa27c498e9a8448404cda42e1b7c5f61235b14;p=thirdparty%2Fsamba.git python: Remove unused parameter ‘backend_store_size’ Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/python/samba/provision/__init__.py b/python/samba/provision/__init__.py index a00738930a7..5fd22b1acc4 100644 --- a/python/samba/provision/__init__.py +++ b/python/samba/provision/__init__.py @@ -830,7 +830,7 @@ def setup_name_mappings(idmap, sid, root_uid, nobody_uid, def setup_samdb_partitions(samdb_path, logger, lp, session_info, provision_backend, names, serverrole, erase=False, plaintext_secrets=False, - backend_store=None,backend_store_size=None): + backend_store=None): """Setup the partitions for the SAM database. Alternatively, provision() may call this, and then populate the database. @@ -1288,8 +1288,7 @@ def setup_samdb(path, session_info, provision_backend, lp, names, setup_samdb_partitions(path, logger=logger, lp=lp, provision_backend=provision_backend, session_info=session_info, names=names, serverrole=serverrole, plaintext_secrets=plaintext_secrets, - backend_store=backend_store, - backend_store_size=backend_store_size) + backend_store=backend_store) store_size = DEFAULT_BACKEND_SIZE if backend_store_size: