Commit 3cee6a15 authored by Vincent Pelletier's avatar Vincent Pelletier

Fix typo in docstrings.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@2640 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 5052b170
......@@ -270,13 +270,13 @@ class Application(object):
@profiler_decorator
def _askStorage(self, conn, packet):
""" Send a request to a storage node and process it's answer """
""" Send a request to a storage node and process its answer """
msg_id = conn.ask(packet, queue=self.local_var.queue)
self._waitMessage(conn, msg_id, self.storage_handler)
@profiler_decorator
def _askPrimary(self, packet):
""" Send a request to the primary master and process it's answer """
""" Send a request to the primary master and process its answer """
conn = self._getMasterConnection()
msg_id = conn.ask(packet, queue=self.local_var.queue)
self._waitMessage(conn, msg_id, self.primary_handler)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment