-
-
Notifications
You must be signed in to change notification settings - Fork 252
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AttributeError: 'Robyn' object has no attribute 'headers'[BUG] #353
Comments
@QuintinTao , are you using wsl? And did you install using conda ? |
|
when will this windows supported version be released? |
Hey @QuintinTao , The fix is ready and this is a high priority issue. Ideally, I would've released it yesterday. However, there a some delays. So, hopefully by today 😄 |
Hey @QuintinTao , this issue has been fixed in the latest release 😄 |
Thanks. |
Description
I use windows 10 Anaconda 201903
I got this error
Traceback (most recent call last):
File "D:/pywork/DServer/main.py", line 10, in
app.start(port=5001)
File "D:\Anaconda\lib\site-packages\robyn_init_.py", line 164, in start
process_pool = init_processpool(socket)
File "D:\Anaconda\lib\site-packages\robyn_init_.py", line 127, in init_processpool
self.headers,
AttributeError: 'Robyn' object has no attribute 'headers'
Process finished with exit code 1
Expected Behavior
Screenshots
Environment:
I use windows 10 Anaconda 201903
[Optional] Additional Context
from robyn import Robyn
app = Robyn(file)
@app.get("/")
async def h(request):
return "Hello, world!"
if name == 'main':
app.start(port=5001)
The text was updated successfully, but these errors were encountered: