From ca04e6cecfc2b1944becb2b647bab9ad203af805 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Fri, 10 Apr 2026 14:34:11 -0300 Subject: [PATCH] Fix: change DRIVE URL from https to http --- src/core/urls.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/urls.rs b/src/core/urls.rs index fb4f4a13..f2a69745 100644 --- a/src/core/urls.rs +++ b/src/core/urls.rs @@ -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";