Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit a4327ef

Browse files
author
Luke Hinds
authored
Merge pull request #304 from stacklok/start-serving
start_serving should be False
2 parents c3eff9c + a24f66b commit a4327ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/codegate/providers/copilot/provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ async def create_proxy_server(
388388
"""Create and start proxy server"""
389389
loop = asyncio.get_event_loop()
390390
server = await loop.create_server(
391-
lambda: cls(loop), host, port, ssl=ssl_context, reuse_port=True, start_serving=True
391+
lambda: cls(loop), host, port, ssl=ssl_context, reuse_port=True, start_serving=False
392392
)
393393
logger.debug(f"Proxy server running on {host}:{port}")
394394
return server

0 commit comments

Comments
 (0)