Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
opcua-asyncio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nikola Balog
opcua-asyncio
Commits
a5c0db99
Commit
a5c0db99
authored
Dec 21, 2017
by
Jonas Neubert
Committed by
oroulet
Jan 15, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix typo: “sesssion”
parent
e483e47e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
opcua/server/server.py
opcua/server/server.py
+1
-1
opcua/server/uaprocessor.py
opcua/server/uaprocessor.py
+2
-2
No files found.
opcua/server/server.py
View file @
a5c0db99
...
...
@@ -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.isess
s
ion 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
...
...
opcua/server/uaprocessor.py
View file @
a5c0db99
...
...
@@ -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 sess
s
ion 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 sess
s
ion 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
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment