Log the value which is observed in the first place.

The name 'result' is of bool type and has no len property,
resulting in a TypeError. Futhermore in the flow control
conn.response is observed and hence should be reported.

Signed-off-by: Daniel Ehlers <sargon@toppoint.de>
This commit is contained in:
Daniel Ehlers 2016-08-14 13:32:24 +02:00
parent e380538b59
commit dfaf0fee31
No known key found for this signature in database
GPG Key ID: C13A9B1CE64A301E

View File

@ -660,7 +660,7 @@ class AuthHandler(BaseHandler):
else:
logger.warn(
"ldap registration failed: unexpected (%d!=1) amount of results",
len(result)
len(conn.response)
)
defer.returnValue(False)