Skip to content

Commit 9397055

Browse files
authored
Fix URL in error message (#1071)
1 parent 9bf74ea commit 9397055

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

icechunk/src/format/manifest.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,14 +212,14 @@ pub fn uniform_manifest_split_edges(num_chunks: u32, split_size: &u32) -> Vec<u3
212212
#[non_exhaustive]
213213
pub enum VirtualReferenceErrorKind {
214214
#[error(
215-
"no virtual chunk container can handle the chunk location ({0}), edit the repository configuration adding a virtual chunk container for the chunk references, see https://icechunk.io/en/stable/icechunk-python/virtual/"
215+
"no virtual chunk container can handle the chunk location ({0}), edit the repository configuration adding a virtual chunk container for the chunk references, see https://icechunk.io/en/stable/virtual/"
216216
)]
217217
NoContainerForUrl(String),
218218
#[error("error parsing virtual ref URL")]
219219
CannotParseUrl(#[from] url::ParseError),
220220
#[error("invalid credentials for virtual reference of type {0}")]
221221
InvalidCredentials(String),
222-
#[error("a virtual chunk in this repository resolves to the url prefix {url}, to be able to fetch the chunk you need to authorize the virtual chunk container when you open/create the repository, see https://icechunk.io/en/stable/icechunk-python/virtual/", url = .0.url_prefix())]
222+
#[error("a virtual chunk in this repository resolves to the url prefix {url}, to be able to fetch the chunk you need to authorize the virtual chunk container when you open/create the repository, see https://icechunk.io/en/stable/virtual/", url = .0.url_prefix())]
223223
UnauthorizedVirtualChunkContainer(Box<VirtualChunkContainer>),
224224
#[error("virtual reference has no path segments {0}")]
225225
NoPathSegments(String),

0 commit comments

Comments
 (0)