Skip to content

Commit

Permalink
ci: fix ci issues
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowHatpro committed Aug 12, 2024
1 parent fac3f51 commit ae5583b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/structs/internet_archive_urls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ pub struct InternetArchiveUrls {
pub id: i32,
pub url: Option<String>,
pub job_id: Option<String>,

Check failure on line 37 in src/structs/internet_archive_urls.rs

View workflow job for this annotation

GitHub Actions / Test for ubuntu-latest

field `job_id` is never read

Check failure on line 37 in src/structs/internet_archive_urls.rs

View workflow job for this annotation

GitHub Actions / Test for ubuntu-latest

field `job_id` is never read

Check failure on line 37 in src/structs/internet_archive_urls.rs

View workflow job for this annotation

GitHub Actions / Test for windows-latest

field `job_id` is never read

Check failure on line 37 in src/structs/internet_archive_urls.rs

View workflow job for this annotation

GitHub Actions / Test for windows-latest

field `job_id` is never read

Check failure on line 37 in src/structs/internet_archive_urls.rs

View workflow job for this annotation

GitHub Actions / Test for macos-latest

field `job_id` is never read

Check failure on line 37 in src/structs/internet_archive_urls.rs

View workflow job for this annotation

GitHub Actions / Test for macos-latest

field `job_id` is never read
#[allow(dead_code)]
pub from_table: Option<String>,
#[allow(dead_code)]
pub from_table_id: Option<i32>,
pub created_at: Option<chrono::DateTime<chrono::Utc>>,
pub retry_count: Option<i32>,
Expand Down
1 change: 1 addition & 0 deletions src/structs/last_unprocessed_row.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ use sqlx::FromRow;
#[derive(Debug, Deserialize, FromRow)]
pub struct LastUnprocessedRow {
pub id_column: i32,
#[allow(dead_code)]
pub table_name: String,
}

0 comments on commit ae5583b

Please sign in to comment.