Skip to content

Commit dc99ea2

Browse files
authored
fix(hip-3-pusher): exception tweak, version bump
2 parents 75f2e24 + f32ed8d commit dc99ea2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/hip-3-pusher/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "hip-3-pusher"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
description = "Hyperliquid HIP-3 market oracle pusher"
55
readme = "README.md"
66
requires-python = "==3.13.*"

apps/hip-3-pusher/src/pusher/kms_signer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def __init__(self, config: Config, publisher_exchanges: list[Exchange]):
3636
self._load_public_key(config.kms.aws_kms_key_id_path)
3737
except Exception as e:
3838
logger.exception("Failed to load public key from KMS; it might be incorrectly configured; error: {}", repr(e))
39-
exit()
39+
raise Exception("Failed to load public key from KMS") from e
4040

4141
def _load_public_key(self, key_path: str):
4242
# Fetch public key once so we can derive address and check recovery id

apps/hip-3-pusher/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)