You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compass' top-level error types should not be transparent unless they do not require context. this should instead return a BuildError or similar where the developer includes the contextual information:
#[error("error building component {0} of type {1}: {2}")]BuildError(String,String,String),
The text was updated successfully, but these errors were encountered:
attempting to run a compass app and i was getting this error:
this was due to the fact that my configuration TOML's output policy had double braces instead of single:
the error is vague because CompassAppError has a transparent ConfigError (from the config crate):
Compass' top-level error types should not be transparent unless they do not require context. this should instead return a BuildError or similar where the developer includes the contextual information:
The text was updated successfully, but these errors were encountered: