Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyler authored Aug 16, 2024
2 parents d65c89f + 8114666 commit afc1cfc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
toolchain: stable
override: true
- name: Teststack setup
run: docker-compose up setup
run: docker compose up setup
- name: Run s3 feature tests
run: cargo test --features s3
- name: Run azure feature tests
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ uuid = { version = "0.8", features = ["serde", "v4"] }
url = "2.3"

# datafusion feature is required for writer version 2
deltalake-core = { version = "~0.18.1", features = ["json", "datafusion"]}
deltalake-aws = { version = "~0.1.2", optional = true }
deltalake-azure = { version = "~0.1.3", optional = true }
deltalake-core = { version = "~0.19.0", features = ["json", "datafusion"]}
deltalake-aws = { version = "~0.1.4", optional = true }
deltalake-azure = { version = "~0.1.4", optional = true }

# s3 feature enabled, helps for locking interactions with DLQ
dynamodb_lock = { version = "0.6.0", optional = true }
Expand Down
1 change: 1 addition & 0 deletions src/dead_letters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ impl DeadLetterQueue for NoopDeadLetterQueue {
/// Implementation of the [DeadLetterQueue] trait that writes dead letter content as warn logs.
/// This implementation is currently only intended for debug development usage.
/// Be mindful of your PII when using this implementation.
#[allow(dead_code)]
pub(crate) struct LoggingDeadLetterQueue {}

#[async_trait]
Expand Down

0 comments on commit afc1cfc

Please sign in to comment.