Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco committed Aug 22, 2024
1 parent baa2764 commit 4f1f842
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/aws/tests/integration_s3_dynamodb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::time::{Duration, SystemTime, UNIX_EPOCH};

use aws_sdk_dynamodb::types::BillingMode;
use deltalake_aws::logstore::{RepairLogEntryResult, S3DynamoDbLogStore};
use deltalake_aws::storage::{s3_constants, S3StorageOptions};
use deltalake_aws::storage::S3StorageOptions;
use deltalake_aws::{CommitEntry, DynamoDbConfig, DynamoDbLockClient};
use deltalake_core::kernel::{Action, Add, DataType, PrimitiveType, StructField, StructType};
use deltalake_core::logstore::{CommitOrBytes, LogStore};
Expand Down Expand Up @@ -353,7 +353,7 @@ async fn create_incomplete_commit_entry(
.await?;

let tmp_commit = match prepared.commit_or_bytes() {
crate::logstore::CommitOrBytes::TmpCommit(tmp_commit) => tmp_commit,
CommitOrBytes::TmpCommit(tmp_commit) => tmp_commit,
_ => unreachable!(),
};

Expand Down

0 comments on commit 4f1f842

Please sign in to comment.