Skip to content

Commit

Permalink
umu_proton: remove digital signature verification logs
Browse files Browse the repository at this point in the history
- These logs aren't interesting and the only time we should care is if it fails
  • Loading branch information
R1kaB3rN committed Dec 10, 2024
1 parent 2c0cc5d commit bed38e3
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions umu/umu_proton.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,6 @@ def _get_delta(
return None

# With the public key, verify the signature and data
log.info("Verifying digital signature of update...")
ssh_public_key = ed25519.Ed25519PublicKey.from_public_bytes(
cbor.get("public_key")
)
Expand All @@ -579,11 +578,6 @@ def _get_delta(
log.error("Digital signature verification failed, skipping update")
return None

log.info(
"Digital signature is OK, verifying %s...",
os.environ["PROTONPATH"],
)

patcher: CustomPatcher = CustomPatcher(
cbor, proton, cache, thread_pool
)
Expand Down

0 comments on commit bed38e3

Please sign in to comment.