Commit 905a23f
fix: use ThreadingHTTPServer to prevent blocking on concurrent connections
When using VS Code Remote or other tools that establish multiple HTTP
connections, the single-threaded HTTPServer can become blocked, making
the web dashboard inaccessible.
ThreadingHTTPServer handles each request in a separate thread, preventing
this blocking issue while maintaining the same API.1 parent e8f81ed commit 905a23f
1 file changed
Lines changed: 2 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| 12 | + | |
12 | 13 | | |
13 | 14 | | |
14 | 15 | | |
| |||
710 | 711 | | |
711 | 712 | | |
712 | 713 | | |
713 | | - | |
| 714 | + | |
714 | 715 | | |
715 | 716 | | |
716 | 717 | | |
| |||
0 commit comments