Răsfoiți Sursa

fix(hip-3-pusher): exception tweak, version bump

Mike Rolish 1 lună în urmă
părinte
comite
dc99ea2794

+ 1 - 1
apps/hip-3-pusher/pyproject.toml

@@ -1,6 +1,6 @@
 [project]
 name = "hip-3-pusher"
-version = "0.1.4"
+version = "0.1.5"
 description = "Hyperliquid HIP-3 market oracle pusher"
 readme = "README.md"
 requires-python = "==3.13.*"

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

@@ -36,7 +36,7 @@ class KMSSigner:
             self._load_public_key(config.kms.aws_kms_key_id_path)
         except Exception as e:
             logger.exception("Failed to load public key from KMS; it might be incorrectly configured; error: {}", repr(e))
-            exit()
+            raise Exception("Failed to load public key from KMS") from e
 
     def _load_public_key(self, key_path: str):
         # Fetch public key once so we can derive address and check recovery id

+ 1 - 1
apps/hip-3-pusher/uv.lock

@@ -329,7 +329,7 @@ wheels = [
 
 [[package]]
 name = "hip-3-pusher"
-version = "0.1.4"
+version = "0.1.5"
 source = { editable = "." }
 dependencies = [
     { name = "boto3" },