Pandikunta Anand Reddy

Results 119 comments of Pandikunta Anand Reddy

> Do you mean parsing django-admin.py output for possible commands and providing a menu to select which to run? If yes, how would you specify arguments? We can specify arguments...

Need to provide support for templates. When user is in a template(*.html), elpy should try to figure where the template is referenced and has to find out the context that...

_fill_optional is not filling the optional fields of a related model(foreign key, onetoone, etc). Shouldn't it populate them also? class Book(models.Model): name = models.CharField(max_length=100) author = models.ForeignKey(Author, on_delete=models.SET_NULL, null=True, blank=True)...

Any updates on the issue? I am using separate servers for asgi and wsgi. All uncaught exceptions of wsgi server are tracked by sentry and it is not able to...

@untitaker Commeting `install_sql_hook()` drops the run time significantly. I have tried this on a django test suite with ~500 tests. Results of 4 test runs average. ``` Without sentry -...

@ipartola Did you manage to run multiple instances? I am not able to run multiple instances. For now, I am running multiple instances on multiple ports and doing a load...

@ipartola uvicorn might fit your needs? You can start multiple processes with `uvicorn foo.asgi --workers 5`.

If anyone knows a good tutorial/documenation on how to scale Daphne with the process supervisor and shared file descriptor, please share it here or added to the documentation. If it...

A year back, I have written a [blog post about Django channels deployment](https://avilpage.com/2018/05/deploying-scaling-django-channels.html) as there weren't any resources for it.

Which OS are you using? `daphne==2.1.0` is working correctly on Ubuntu 18.04. ``` 2018-05-17 20:00:20,451 INFO Starting server at tcp:port=9000:interface=0.0.0.0 2018-05-17 20:00:20,453 INFO HTTP/2 support not enabled (install the http2...