collab: Fix error message when missing Kinesis region (#23811)

This PR fixes a typo in the error that occurs when trying to construct
an AWS Kinesis client and the `kinesis_region` value is missing.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-01-28 17:52:50 -05:00 committed by GitHub
parent 353ae316c9
commit 3b6e1be169
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -407,7 +407,7 @@ async fn build_kinesis_client(config: &Config) -> anyhow::Result<aws_sdk_kinesis
config
.kinesis_region
.clone()
.ok_or_else(|| anyhow!("missing blob_store_region"))?,
.ok_or_else(|| anyhow!("missing kinesis_region"))?,
))
.credentials_provider(keys)
.load()