PYTHON-1783 Fix issues resulting from 3-way merge

This commit is contained in:
Prashant Mital 2019-04-16 16:17:33 -07:00
parent b14dede0fb
commit e1c319b041
No known key found for this signature in database
GPG Key ID: 3D2DAA9E483ABE51
2 changed files with 2 additions and 2 deletions

View File

@ -159,7 +159,7 @@ class CommandCursor(object):
legacy_response=legacy_response, user_fields=user_fields)
if from_command:
first = docs[0]
client._process_response(first, self.__session)
client._receive_cluster_time(first, self.__session)
helpers._check_command_response(first)
except OperationFailure as exc:

View File

@ -1006,7 +1006,7 @@ class Cursor(object):
legacy_response=legacy_response, user_fields=user_fields)
if from_command:
first = docs[0]
client._process_response(first, self.__session)
client._receive_cluster_time(first, self.__session)
helpers._check_command_response(first)
except OperationFailure as exc:
self.__killed = True