Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use lazy_static::lazy_static;
use regex::Regex;
use sqlx::sqlite::{SqliteConnectOptions, SqlitePoolOptions};
use sqlx::{Pool, Row, Sqlite, SqliteExecutor, Transaction};
use tokio::task;

lazy_static! {
static ref EMAIL_RE_1: Regex =
Expand Down Expand Up @@ -66,7 +65,7 @@ async fn main() -> anyhow::Result<()> {
);

// Some kind of exponential backpressure on a worker would be nicer
let mut retries = 0;
let retries = 0;
loop {
// TODO: lol handle these better, i keep getting deadlocks but wanna just churn some emails
// retries += 1;
Expand Down