From ecc155d0826b3753ecd96d7175a777ff7c2f1bdf Mon Sep 17 00:00:00 2001 From: SubashMohan <76524044+Subash-Mohan@users.noreply.github.com> Date: Sun, 30 Mar 2025 03:04:30 +0530 Subject: [PATCH] fix: ensure base_url ends with a trailing slash (#4388) --- backend/onyx/connectors/highspot/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/onyx/connectors/highspot/client.py b/backend/onyx/connectors/highspot/client.py index 7879e6e79..3a3fc10b2 100644 --- a/backend/onyx/connectors/highspot/client.py +++ b/backend/onyx/connectors/highspot/client.py @@ -75,7 +75,7 @@ class HighspotClient: self.key = key self.secret = secret - self.base_url = base_url + self.base_url = base_url.rstrip("/") + "/" self.timeout = timeout # Set up session with retry logic