Commit a5c0db99 authored by Jonas Neubert's avatar Jonas Neubert Committed by oroulet

fix typo: “sesssion”

parent e483e47e
......@@ -48,7 +48,7 @@ class Server(object):
All methods are threadsafe
If you need more flexibility you call directly the Ua Service methods
on the iserver or iserver.isesssion object members.
on the iserver or iserver.isession object members.
During startup the standard address space will be constructed, which may be
time-consuming when running a server on a less powerful device (e.g. a
......
......@@ -138,7 +138,7 @@ class UaProcessor(object):
response.Parameters.ServerSignature.Algorithm = "http://www.w3.org/2000/09/xmldsig#rsa-sha1"
self.logger.info("sending create sesssion response")
self.logger.info("sending create session response")
self.send_response(requesthdr.RequestHandle, algohdr, seqhdr, response)
elif typeid == ua.NodeId(ua.ObjectIds.CloseSessionRequest_Encoding_DefaultBinary):
......@@ -148,7 +148,7 @@ class UaProcessor(object):
self.session.close_session(deletesubs)
response = ua.CloseSessionResponse()
self.logger.info("sending close sesssion response")
self.logger.info("sending close session response")
self.send_response(requesthdr.RequestHandle, algohdr, seqhdr, response)
elif typeid == ua.NodeId(ua.ObjectIds.ActivateSessionRequest_Encoding_DefaultBinary):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment