From 932ce45ebb57c83a4c8475c332a6a7f653d27e7a Mon Sep 17 00:00:00 2001 From: Shy Alter Date: Tue, 4 Aug 2026 11:59:47 +0200 Subject: [PATCH] fix(dev): load product imports in DuckLake check Generated-By: PostHog Code Task-Id: 56b16387-fd8b-4cd9-a1ed-21feda91f1b8 --- bin/check_ducklake_up | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/check_ducklake_up b/bin/check_ducklake_up index 97ebd039bbc3..5dd2ae219e50 100755 --- a/bin/check_ducklake_up +++ b/bin/check_ducklake_up @@ -3,6 +3,7 @@ from __future__ import annotations +import sys import time from importlib import util as importlib_util from pathlib import Path @@ -11,6 +12,7 @@ from types import ModuleType import duckdb REPO_ROOT = Path(__file__).resolve().parent.parent +sys.path.insert(0, str(REPO_ROOT)) MAX_RETRIES = 30