rpc: don't decode cookie_string if it's None

This removes an ugly debug message from client installation

Reviewed-By: Fraser Tweedale <ftweedal@redhat.com>
This commit is contained in:
Stanislav Laznicka 2017-09-19 14:00:43 +02:00 committed by Tomas Krizek
parent dc47a4b85f
commit 5acd484090
No known key found for this signature in database
GPG Key ID: 22A2A94B5E49415A

View File

@ -901,6 +901,8 @@ class RPCClient(Connectible):
# (possibly with more than one cookie).
try:
cookie_string = read_persistent_client_session_data(principal)
if cookie_string is None:
return
cookie_string = cookie_string.decode('utf-8')
except Exception as e:
logger.debug('Error reading client session data: %s', e)