Skip to content

Commit

Permalink
extension: Fix manifest filename in error message (#22906)
Browse files Browse the repository at this point in the history
This PR fixes the incorrect filename for the extension manifest being
used in an error message.

It should be `extension.toml` and not `extension.json`.

Release Notes:

- N/A
  • Loading branch information
maxdeviant authored Jan 9, 2025
1 parent 5c239be commit 4aa4a40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/extension/src/extension_manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ impl ExtensionManifest {
.await
.with_context(|| format!("failed to load {extension_name} extension.toml"))?;
toml::from_str(&manifest_content)
.with_context(|| format!("invalid extension.json for extension {extension_name}"))
.with_context(|| format!("invalid extension.toml for extension {extension_name}"))
}
}
}
Expand Down

0 comments on commit 4aa4a40

Please sign in to comment.