Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,8 @@ allow-branch = ["main"]
sign-commit = true
sign-tag = true
push = false


[profile.perf]
inherits = "release"
debug = 1
4 changes: 4 additions & 0 deletions icechunk-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,7 @@ default = ["cli"]

[lints]
workspace = true

[profile.perf]
inherits = "release"
debug = 1
4 changes: 2 additions & 2 deletions icechunk/src/storage/object_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -448,12 +448,12 @@ impl Storage for ObjectStorage {
.await
}

#[instrument(skip(self, _settings))]
#[instrument(skip(self, _settings, bytes))]
async fn write_chunk(
&self,
_settings: &Settings,
id: ChunkId,
bytes: bytes::Bytes,
bytes: Bytes,
) -> Result<(), StorageError> {
let path = self.get_chunk_path(&id);
self.get_client().await.put(&path, bytes.into()).await?;
Expand Down