Skip to content

Commit ae0e254

Browse files
committed
fix: increase max buffer size for socket.io events to 100MB for large repos
1 parent ddf0a8e commit ae0e254

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- properly adding user input messages to the input history when using MCP tools
88
- wrapping long tool message content
99
- better handling of MCP tool errors
10+
- increase max buffer size for socket.io events to 100MB to fix issue with large repos
1011

1112
## [0.3.2]
1213

src/main/connector-manager.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class ConnectorManager {
4444
methods: ['GET', 'POST'],
4545
},
4646
pingTimeout: 120000,
47+
maxHttpBufferSize: 1e8, // Increase payload size to 100 MB
4748
});
4849

4950
this.io.on('connection', (socket) => {

0 commit comments

Comments
 (0)