mirror of
https://github.com/openkmip/pykmip
synced 2026-01-01 08:03:32 +00:00
Merge pull request #149 from viktorTarasov/fix/session/session_name
fix: session: 'expected str instance, NoneType found'
This commit is contained in:
@@ -51,6 +51,9 @@ class KmipSession(threading.Thread):
|
||||
kwargs={}
|
||||
)
|
||||
|
||||
if name is None:
|
||||
name = self.name
|
||||
|
||||
self._logger = logging.getLogger('.'.join((__name__, name)))
|
||||
|
||||
self._engine = engine
|
||||
|
||||
@@ -38,6 +38,12 @@ class TestKmipSession(testtools.TestCase):
|
||||
"""
|
||||
session.KmipSession(None, None, 'name')
|
||||
|
||||
def test_init_without_name(self):
|
||||
"""
|
||||
Test that a KmipSession without 'name' can be created without errors.
|
||||
"""
|
||||
session.KmipSession(None, None, None)
|
||||
|
||||
def test_run(self):
|
||||
"""
|
||||
Test that the message handling loop is handled properly on normal
|
||||
|
||||
Reference in New Issue
Block a user