From a6921de6a2e9f1f852377c2025ce4a55b9fbd53f Mon Sep 17 00:00:00 2001 From: Edgar Lin Date: Tue, 28 Oct 2025 15:18:41 -0700 Subject: [PATCH] Revert "change order of fields in auth_data to match autoscaler for signature verification" so that it's alphabetical again This reverts commit b8223879c928f015d368e159b656a448b99b2fbe. --- lib/data_types.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/data_types.py b/lib/data_types.py index c40fcc6..ceadfed 100644 --- a/lib/data_types.py +++ b/lib/data_types.py @@ -65,12 +65,12 @@ class ApiPayload(ABC): class AuthData: """data used to authenticate requester""" - endpoint: str - request_idx: int - url: str - cost: str - reqnum: int signature: str + cost: str + endpoint: str + reqnum: int + url: str + request_idx: int @classmethod def from_json_msg(cls, json_msg: Dict[str, Any]):