Replace magic numbers with named constants #19
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Severity: Low
crates/infra-wiring/src/config.rs:2_592_000u64as the defaultrefresh_ttl_seconds. This is 30 days in seconds. Useconst DEFAULT_REFRESH_TTL_SECS: u64 = 30 * 24 * 60 * 60;crates/worker/src/main.rs:PosterSyncHandler::new(...)ends with a bare3argument. Without reading the handler's signature, there's no way to know what this means (retry count? concurrency limit?). Use a named variable.