We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b2d513 commit b179d68Copy full SHA for b179d68
src/db/add_package.rs
@@ -251,6 +251,9 @@ pub(crate) async fn finish_build(
251
let rustc_date = match parse_rustc_date(rustc_version) {
252
Ok(date) => Some(date),
253
Err(err) => {
254
+ // in the database we see cases where the rustc version is missing
255
+ // in the builds-table. In this case & if we can't parse the version
256
+ // we just want to log an error, but still finish the build.
257
error!(
258
"Failed to parse date from rustc version \"{}\": {:?}",
259
rustc_version, err
0 commit comments