We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1f180e commit ad71630Copy full SHA for ad71630
kms-connector/crates/kms-worker/src/core/event_processor/kms_client.rs
@@ -341,7 +341,7 @@ impl KmsClient {
341
request: InitRequest,
342
) -> Result<KmsGrpcResponse, ProcessingError> {
343
let inner_client = self.choose_client(RequestId {
344
- request_id: hex::encode(PRSS_INIT_ID.as_le_slice()),
+ request_id: hex::encode(PRSS_INIT_ID.to_be_bytes::<32>()),
345
});
346
send_request_with_retry(
347
self.grpc_request_retries,
0 commit comments