Fix: change DRIVE URL from https to http
All checks were successful
BotServer CI/CD / build (push) Successful in 58s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-04-10 14:34:11 -03:00
parent 0fad62aed9
commit ca04e6cecf

View file

@ -493,7 +493,7 @@ impl InternalUrls {
pub const DIRECTORY_BASE: &'static str = "http://localhost:8300";
pub const DATABASE: &'static str = "postgres://localhost:5432";
pub const CACHE: &'static str = "redis://localhost:6379";
pub const DRIVE: &'static str = "https://localhost:9100";
pub const DRIVE: &'static str = "http://localhost:9100";
pub const EMAIL: &'static str = "http://localhost:8025";
pub const LLM: &'static str = "http://localhost:8081";
pub const EMBEDDING: &'static str = "http://localhost:8082";