Skip to content

Commit 932d42c

Browse files
committed
Potential fix for pull request finding
Signed-off-by: Albert Callarisa <albert@diagrid.io>
1 parent de55623 commit 932d42c

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)