added companie mapping with yahoo tickers

This commit is contained in:
2025-12-14 16:48:02 +01:00
parent 00c9d45642
commit d744769138
12 changed files with 1507 additions and 2591 deletions

View File

@@ -14,11 +14,6 @@ use util::directories::DataPaths;
use util::{logger, opnv};
use std::sync::Arc;
/// Application entry point
// src/main.rs
// ... existing imports ...
#[tokio::main]
async fn main() -> Result<()> {
cleanup_all_proxy_containers().await.ok();
@@ -138,7 +133,7 @@ async fn main() -> Result<()> {
std::process::exit(0);
});
}
// === Step 4: Run the actual scraping jobs ===
logger::log_info("--- Starting ECONOMIC data update ---").await;
economic::run_full_update(&config, &pool).await?;
@@ -161,9 +156,4 @@ async fn main() -> Result<()> {
logger::log_info("=== Application finished successfully ===").await;
Ok(())
}
/*
memory allocation of 4294967296 bytes failed
error: process didn't exit successfully: `target\debug\event_backtest_engine.exe` (exit code: 0xc0000409, STATUS_STACK_BUFFER_OVERRUN)
*/
}