|
@@ -300,9 +300,9 @@ class UploadPackHandler(Handler):
|
|
|
class ProtocolGraphWalker(object):
|
|
|
"""A graph walker that knows the git protocol.
|
|
|
|
|
|
- As a graph walker, this class implements ack(), next(), and reset(). It also
|
|
|
- contains some base methods for interacting with the wire and walking the
|
|
|
- commit tree.
|
|
|
+ As a graph walker, this class implements ack(), next(), and reset(). It
|
|
|
+ also contains some base methods for interacting with the wire and walking
|
|
|
+ the commit tree.
|
|
|
|
|
|
The work of determining which acks to send is passed on to the
|
|
|
implementation instance stored in _impl. The reason for this is that we do
|
|
@@ -452,10 +452,10 @@ class ProtocolGraphWalker(object):
|
|
|
commit = pending.popleft()
|
|
|
if commit.id in haves:
|
|
|
return True
|
|
|
- if not getattr(commit, 'get_parents', None):
|
|
|
+ if commit.type_name != "commit":
|
|
|
# non-commit wants are assumed to be satisfied
|
|
|
continue
|
|
|
- for parent in commit.get_parents():
|
|
|
+ for parent in commit.parents:
|
|
|
parent_obj = self.store[parent]
|
|
|
# TODO: handle parents with later commit times than children
|
|
|
if parent_obj.commit_time >= earliest:
|