Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Jan 6, 2025
1 parent ee04522 commit 55d572f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add support for pcodec `Auto`, `None`, and `TryLookback` delta specs
- Add `Group::[set_]consolidated_metadata`
- Add `Node::consolidate_metadata`
- Consolidated metadata is not currently used to optimise node hierarchy requests

### Changed
- **Breaking**: Seal `Array` extension traits: `ArraySharded[Readable]Ext` and `ArrayChunkCacheExt`
Expand Down
5 changes: 4 additions & 1 deletion zarrs_metadata/src/v3/group.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,10 @@ impl GroupMetadataV3 {

/// Set the consolidated metadata.
#[must_use]
pub fn with_consolidated_metadata(mut self, consolidated_metadata: Option<ConsolidatedMetadata>) -> Self {
pub fn with_consolidated_metadata(
mut self,
consolidated_metadata: Option<ConsolidatedMetadata>,
) -> Self {
self.consolidated_metadata = consolidated_metadata;
self
}

Check warning on line 97 in zarrs_metadata/src/v3/group.rs

View check run for this annotation

Codecov / codecov/patch

zarrs_metadata/src/v3/group.rs#L91-L97

Added lines #L91 - L97 were not covered by tests
Expand Down

0 comments on commit 55d572f

Please sign in to comment.