Skip to content

Commit af136b7

Browse files
authored
Merge branch 'main' into add-tool-get-projects
2 parents 073be46 + 24c0107 commit af136b7

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
kind: Enhancement or New Feature
2+
body: Extend detect_binary_type timeout to account for long-running dbt executable
3+
time: 2026-01-13T15:30:07.124284-08:00

src/dbt_mcp/dbt_cli/binary_type.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def detect_binary_type(file_path: str) -> BinaryType:
2929
check=False,
3030
capture_output=True,
3131
text=True,
32-
timeout=10,
32+
timeout=60,
3333
)
3434
help_output = result.stdout
3535
except Exception as e:

0 commit comments

Comments
 (0)