Devansh Kumar
Devansh Kumar
Gettings same error but in different use case. I have integrated celery, celery-beat in my django project with `djongo` engine. When opening `http://localhost:8000/admin/django_celery_beat/periodictask/` getting the same error: ``` Traceback (most...
@saurabh-m523 did you find any solution or workaround on the same issue?
the issue has been resolved by adding implementation for non implemented method: `djongo/operations.py:` ``` class DatabaseOperations(BaseDatabaseOperations): def date_trunc_sql(self, lookup_type, field_name): # https://github.com/nesdis/djongo/issues/343 return "EXTRACT(%s FROM %s)" % (lookup_type, field_name) ```...
Hi, I am facing same problem. There is no issue when using http, problem occurring over https. and i am request through android app.