Skip to content

Commit

Permalink
v1.17: Display error message while loading geyser plugins (solana-lab…
Browse files Browse the repository at this point in the history
…s#33990) (#97)

Display error message while laoding geyser plugins (solana-labs#33990)

Co-authored-by: galactus <[email protected]>
  • Loading branch information
CriesofCarrots and godmodegalactus authored Mar 7, 2024
1 parent bc3ab0f commit 0ef1f65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions geyser-plugin-manager/src/geyser_plugin_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,13 +296,13 @@ pub enum GeyserPluginManagerError {
#[error("Invalid plugin path")]
InvalidPluginPath,

#[error("Cannot load plugin shared library")]
#[error("Cannot load plugin shared library (error: {0})")]
PluginLoadError(String),

#[error("The geyser plugin {0} is already loaded shared library")]
PluginAlreadyLoaded(String),

#[error("The GeyserPlugin on_load method failed")]
#[error("The GeyserPlugin on_load method failed (error: {0})")]
PluginStartError(String),
}

Expand Down

0 comments on commit 0ef1f65

Please sign in to comment.