Skip to content

Commit 11bd4c8

Browse files
committed
Run cargo fmt
1 parent 9dbdf6b commit 11bd4c8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crates/iceberg/src/transaction/append.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,10 @@ impl FastAppendAction {
109109
#[async_trait]
110110
impl TransactionAction for FastAppendAction {
111111
async fn commit(self: Arc<Self>, table: &Table) -> Result<ActionCommit> {
112-
let tag_ref = self.tag_name.as_ref().map(|name| (name.clone(), self.tag_retention));
112+
let tag_ref = self
113+
.tag_name
114+
.as_ref()
115+
.map(|name| (name.clone(), self.tag_retention));
113116

114117
let snapshot_producer = SnapshotProducer::new(
115118
table,

0 commit comments

Comments
 (0)