Make one small change to a backend local crate and see if caching speeds up backend test container build process
All checks were successful
Podman Rootless Demo / test-backend (push) Successful in 6m26s

This commit is contained in:
continuist 2025-09-20 11:09:02 -04:00
parent 93ce4f81b6
commit 28c89c6384

View file

@ -48,7 +48,7 @@ impl User {
// Constructor with validation
pub fn new(id: Uuid, username: String, email: String) -> Result<Self> {
if username.trim().is_empty() {
return Err(DomainError::InvalidInput("Username cannot be empty".to_string()));
return Err(DomainError::InvalidInput("Username cannot be empty.".to_string()));
}
let now = Utc::now();