remove two old and useless debug messages
This commit is contained in:
parent
a88bbe864b
commit
ce12b56ee8
1 changed files with 0 additions and 2 deletions
|
|
@ -81,7 +81,6 @@ class BackendsCall(object):
|
||||||
# Create jobs for each backend
|
# Create jobs for each backend
|
||||||
with self.mutex:
|
with self.mutex:
|
||||||
for backend in backends:
|
for backend in backends:
|
||||||
self.logger.debug('Creating a new thread for %s' % backend)
|
|
||||||
self.threads.append(Timer(0, self._caller, (backend, function, args, kwargs)).start())
|
self.threads.append(Timer(0, self._caller, (backend, function, args, kwargs)).start())
|
||||||
if not backends:
|
if not backends:
|
||||||
self.finish_event.set()
|
self.finish_event.set()
|
||||||
|
|
@ -101,7 +100,6 @@ class BackendsCall(object):
|
||||||
self.response_event.set()
|
self.response_event.set()
|
||||||
|
|
||||||
def _caller(self, backend, function, args, kwargs):
|
def _caller(self, backend, function, args, kwargs):
|
||||||
self.logger.debug('%s: Thread created successfully' % backend)
|
|
||||||
with backend:
|
with backend:
|
||||||
try:
|
try:
|
||||||
# Call method on backend
|
# Call method on backend
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue