typo on session.py
This commit is contained in:
parent
9d772a45d5
commit
458189366f
1 changed files with 2 additions and 2 deletions
|
@ -648,7 +648,7 @@ class SessionBase(RPCSession):
|
||||||
status += 'C'
|
status += 'C'
|
||||||
if self.log_me:
|
if self.log_me:
|
||||||
status += 'L'
|
status += 'L'
|
||||||
status += str(self.concurrency.max_concurrent)
|
status += str(self._concurrency.max_concurrent)
|
||||||
return status
|
return status
|
||||||
|
|
||||||
def connection_made(self, transport):
|
def connection_made(self, transport):
|
||||||
|
@ -681,7 +681,7 @@ class SessionBase(RPCSession):
|
||||||
return len(self.connection.pending_requests())
|
return len(self.connection.pending_requests())
|
||||||
|
|
||||||
def semaphore(self):
|
def semaphore(self):
|
||||||
return Semaphores([self.concurrency.semaphore, self.group.semaphore])
|
return Semaphores([self._concurrency.semaphore, self.group.semaphore])
|
||||||
|
|
||||||
def sub_count(self):
|
def sub_count(self):
|
||||||
return 0
|
return 0
|
||||||
|
|
Loading…
Reference in a new issue