diff --git a/src/enterprise/license.rs b/src/enterprise/license.rs index ee0313fb2c..3c61f90b37 100644 --- a/src/enterprise/license.rs +++ b/src/enterprise/license.rs @@ -350,12 +350,13 @@ async fn renew_license(db_pool: &DbPool) -> Result { }; // FIXME: this should be a hardcoded IP, make sure to add appropriate host headers - const LICENSE_SERVER_URL: &str = "https://update-service-dev.teonite.net/api/license/renew"; + const LICENSE_SERVER_URL: &str = "https://update-service-dev.defguard.net/api/license/renew"; let new_license_key = match client .post(LICENSE_SERVER_URL) .json(&request_body) .header(reqwest::header::USER_AGENT, format!("DefGuard/{VERSION}")) + .timeout(Duration::from_secs(10)) .send() .await {