Eliminate deploytest branch and remove the database url from the info logs

This commit is contained in:
Christbru 2025-10-18 23:57:20 -05:00
commit 529c1eef2b

View file

@ -29,7 +29,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
.unwrap_or_else(|_| "mysql://astraadmin:password@mysql:3306/astra".to_string());
info!("Starting Rust Engine...");
info!("Connecting to database: {}", database_url);
// info!("Connecting to database: {}", database_url);
// Connect to database
let pool = match MySqlPool::connect(&database_url).await {