You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the great software! I've been using it for a while in one of my projects (the CodeChat system) and it works well!
Recently, however, I've noticed that running inside a Github Codespace using bottle causes failures -- pages don't load properly. In contrast, running python -m http.server does work. I created this repo to demonstrate the problem. To test it out, click on the green "Code" button, select the "Codespace" tab, the click on the green "Create codespace on main" button. After the Codespace boots up, run bash btest.sh to open a simple Bottle server.
Any ideas? Thanks for your help!
The text was updated successfully, but these errors were encountered:
Works for me. Maybe this was fixed by CodeSpaces in the meantime, or you were bitten by the fact that the built-in development server is single-threaded and can only serve one request at a time. Use a more suitable server back-end (anything that speaks WSGI) to remove that limitation.
Thanks for the great software! I've been using it for a while in one of my projects (the CodeChat system) and it works well!
Recently, however, I've noticed that running inside a Github Codespace using bottle causes failures -- pages don't load properly. In contrast, running
python -m http.server
does work. I created this repo to demonstrate the problem. To test it out, click on the green "Code" button, select the "Codespace" tab, the click on the green "Create codespace on main" button. After the Codespace boots up, runbash btest.sh
to open a simple Bottle server.Any ideas? Thanks for your help!
The text was updated successfully, but these errors were encountered: