Skip to content
Snippets Groups Projects
Commit 307c155e authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

dirstate: deprecate calling `setbranch` without a transaction parameter

The new way is now enforced.
parent 240a04ce
No related branches found
No related tags found
3 merge requests!485branching: merge default into stable,!483cleanup branch hack in the transaction.,!482write branch in the transaction when applicable
......@@ -43,6 +43,9 @@
parsers = policy.importmod('parsers')
rustmod = policy.importrust('dirstate')
# use to detect lack of a parameter
SENTINEL = object()
HAS_FAST_DIRSTATE_V2 = rustmod is not None
propertycache = util.propertycache
......@@ -621,5 +624,5 @@
fold_p2 = oldp2 != nullid and p2 == nullid
return self._map.setparents(p1, p2, fold_p2=fold_p2)
def setbranch(self, branch, transaction=None):
def setbranch(self, branch, transaction=SENTINEL):
self.__class__._branch.set(self, encoding.fromlocal(branch))
......@@ -625,4 +628,8 @@
self.__class__._branch.set(self, encoding.fromlocal(branch))
if transaction is SENTINEL:
msg = b"setbranch needs a `transaction` argument"
self._ui.deprecwarn(msg, b'6.5')
transaction = None
if transaction is not None:
self._setup_tr_abort(transaction)
transaction.addfilegenerator(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment