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
579b07bb
Commit
579b07bb
authored
Aug 17, 2021
by
Christopher Bremner
Committed by
oroulet
Aug 19, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ignore errors during subscription deletion
parent
085b00e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
asyncua/server/subscription_service.py
asyncua/server/subscription_service.py
+5
-1
No files found.
asyncua/server/subscription_service.py
View file @
579b07bb
...
@@ -66,7 +66,11 @@ class SubscriptionService:
...
@@ -66,7 +66,11 @@ class SubscriptionService:
else
:
else
:
existing_subs
.
append
(
sub
)
existing_subs
.
append
(
sub
)
res
.
append
(
ua
.
StatusCode
())
res
.
append
(
ua
.
StatusCode
())
await
asyncio
.
gather
(
*
[
sub
.
stop
()
for
sub
in
existing_subs
])
exceptions
=
await
asyncio
.
gather
(
*
[
sub
.
stop
()
for
sub
in
existing_subs
],
return_exceptions
=
True
)
for
exc
in
exceptions
:
self
.
logger
.
warning
(
"Exception while stopping subscription"
,
exc_info
=
exc
)
return
res
return
res
def
publish
(
self
,
acks
:
Iterable
[
ua
.
SubscriptionAcknowledgement
]):
def
publish
(
self
,
acks
:
Iterable
[
ua
.
SubscriptionAcknowledgement
]):
...
...
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