Skip to content

Commit 2766960

Browse files
don't raise exception if qos_tags is not defined
1 parent 0eeebcf commit 2766960

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cads_broker/factory.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
def tagged(context, value):
5-
if value in context.request.request_metadata.get("qos_tags"):
5+
if value in context.request.request_metadata.get("qos_tags", []):
66
return True
77

88

0 commit comments

Comments
 (0)