We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 560e475 commit d45b876Copy full SHA for d45b876
src/docbuilder/rustwide_builder.rs
@@ -245,7 +245,8 @@ impl RustwideBuilder {
245
let conn = connect_db()?;
246
247
if is_blacklisted(&conn, name)? {
248
- return Err(::failure::err_msg("crate is on the blacklist"));
+ info!("skipping build of {}, crate has been blacklisted", name);
249
+ return Ok(false);
250
}
251
252
let limits = Limits::for_crate(&conn, name)?;
0 commit comments