Skip to content

Commit

Permalink
Don't fail fast. Ignore py3.9 typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fkantelberg committed Jun 16, 2023
1 parent 9a7b771 commit 5899b85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
Expand Down
2 changes: 1 addition & 1 deletion src/socket_proxy/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ async def loop(self) -> None:

self.server = await asyncio.start_server(
self._accept,
self.host,
self.host, # type: ignore
self.port,
ssl=self.sc,
)
Expand Down
2 changes: 1 addition & 1 deletion src/socket_proxy/tunnel_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ async def _open_server(self) -> bool:

self.server = await asyncio.start_server(
self._client_accept,
self.tunnel_host,
self.tunnel_host, # type: ignore
self.tunnel_port,
)
asyncio.create_task(self._client_loop())
Expand Down

0 comments on commit 5899b85

Please sign in to comment.