update configuration docker setup for data platform

This commit is contained in:
jigoong
2026-05-07 17:57:42 +07:00
parent ce949dcc8f
commit 1dba772e62
53 changed files with 6732 additions and 24 deletions

View File

@@ -48,7 +48,7 @@ async def upsert_to_supabase(
headers["Prefer"] += f",on_conflict={on_conflict}"
try:
async with httpx.AsyncClient(timeout=30.0) as client:
async with httpx.AsyncClient(timeout=30.0, verify=False) as client:
response = await client.post(url, json=data, headers=headers)
response.raise_for_status()
return {
@@ -102,7 +102,7 @@ def upsert_to_supabase_sync(
headers["Prefer"] += f",on_conflict={on_conflict}"
try:
with httpx.Client(timeout=30.0) as client:
with httpx.Client(timeout=30.0, verify=False) as client:
response = client.post(url, json=data, headers=headers)
response.raise_for_status()
return {