Skip to content

Commit

Permalink
fix: Attempt to disable send timeout (#26837)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfarias authored Dec 11, 2024
1 parent 050513d commit e961500
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion posthog/temporal/common/clickhouse.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
import ssl
import typing
import uuid
import structlog

import aiohttp
import pyarrow as pa
import requests
import structlog
from django.conf import settings

import posthog.temporal.common.asyncpa as asyncpa
Expand Down Expand Up @@ -511,6 +511,7 @@ async def get_client(
max_memory_usage=settings.CLICKHOUSE_MAX_MEMORY_USAGE,
max_block_size=max_block_size,
output_format_arrow_string_as_string="true",
http_send_timeout=0,
**kwargs,
) as client:
yield client

0 comments on commit e961500

Please sign in to comment.