We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ca67cf commit 052e67eCopy full SHA for 052e67e
opentelemetry-api/src/opentelemetry/baggage/__init__.py
@@ -121,8 +121,8 @@ def _is_valid_value(value: object) -> bool:
121
parts = str(value).split(";")
122
is_valid_value = _VALUE_PATTERN.fullmatch(parts[0]) is not None
123
if len(parts) > 1: # one or more properties metadata
124
- for property in parts[1:]:
125
- if _PROPERT_PATTERN.fullmatch(property) is None:
+ for prop in parts[1:]:
+ if _PROPERT_PATTERN.fullmatch(prop) is None:
126
is_valid_value = False
127
break
128
return is_valid_value
0 commit comments