Skip to content

Commit ff5d32b

Browse files
committed
Potential fix for pull request finding
1 parent de55623 commit ff5d32b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dapr/actor/runtime/_grpc_callbacks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def _maybe_unwrap_grpc_registered_value(value: bytes) -> bytes:
184184
try:
185185
decoded = base64.b64decode(parsed, validate=True)
186186
json.loads(decoded)
187-
except ValueError:
187+
except Exception: # noqa: BLE001
188188
return value
189189
return decoded
190190

0 commit comments

Comments
 (0)