Skip to content
Snippets Groups Projects
Commit 038bfc384271 authored by Martin von Zweigbergk's avatar Martin von Zweigbergk
Browse files

changegroup: inline 'publishing' variable in apply()

parent 4c6e4a4486a0
No related branches found
No related tags found
No related merge requests found
......@@ -377,7 +377,6 @@
repo.hook('pretxnchangegroup', throw=True, **hookargs)
added = [cl.node(r) for r in xrange(clstart, clend)]
publishing = repo.publishing()
if srctype in ('push', 'serve'):
# Old servers can not push the boundary themselves.
# New servers won't push the boundary if changeset already
......@@ -385,7 +384,7 @@
#
# We should not use added here but the list of all change in
# the bundle
if publishing:
if repo.publishing():
phases.advanceboundary(repo, tr, phases.public, cgnodes)
else:
# Those changesets have been pushed from the
......
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