Revert "change order of fields in auth_data to match autoscaler for signature verification" so that it's alphabetical again

This reverts commit b8223879c9.
This commit is contained in:
Edgar Lin
2025-10-28 15:18:41 -07:00
parent dcb7d036ed
commit a6921de6a2
+5 -5
View File
@@ -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]):