Commit 63cf54c 1 parent b0db207 commit 63cf54c Copy full SHA for 63cf54c
File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ def search_issues(params: IssuesParams):
31
31
32
32
with duckdb .connect () as conn :
33
33
try :
34
- logger .info (conn .execute ("FROM duckdb_secrets();" ).fetchall ())
34
+ logger .info (conn .execute ("SET enable_http_logging = true" ).fetchall ())
35
+ logger .info (conn .execute ("SELECT * FROM duckdb_settings();" ).fetchall ())
35
36
count = conn .execute (sql_count ).fetchone ()[0 ] # Count is first item in Tuple
36
37
logger .debug (count )
37
38
results = conn .execute (sql_results ).arrow ().to_pylist ()
Original file line number Diff line number Diff line change 2
2
import logging
3
3
import sys
4
4
5
- # Temporary to help debug httpx S3 connection issue in AWS
6
- logging .getLogger ("httpx" ).setLevel ("DEBUG" )
7
-
8
5
9
6
def get_logger (logger_name ):
10
7
logger = logging .getLogger (logger_name )
You can’t perform that action at this time.
0 commit comments