Skip to content

Commit

Permalink
Properly url decode keys for the auto-tag lambda
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyler committed Feb 7, 2024
1 parent 805aef3 commit 145d110
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.9.0"
version = "0.9.1"
edition = "2021"
keywords = ["deltalake", "parquet", "lambda", "delta"]
homepage = "https://github.com/buoyant-data/oxbow"
Expand Down
1 change: 1 addition & 0 deletions lambdas/auto-tag/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ async fn function_handler(event: LambdaEvent<SqsEvent>) -> Result<(), Error> {
Ok(_) => s3_from_sns(event.payload)?,
Err(_) => s3_from_sqs(event.payload)?,
};
let records = records_with_url_decoded_keys(&records);
let extensions = extensions_for(&records);

for (locator, tag) in extensions.iter() {
Expand Down

0 comments on commit 145d110

Please sign in to comment.