altairbow / django-db-connection-pool

Database connection pool component library for Django
https://pypi.python.org/pypi/django-db-connection-pool/
MIT License
181 stars 24 forks source link

OperationalError SSL SYSCALL error: EOF detected #43

Closed mishrsoumitra closed 8 months ago

mishrsoumitra commented 1 year ago

Describe the bug We are seeing a lot of the below errors after switching to django-db-connection-pool, before we never saw this issue. OperationalError SSL SYSCALL error: EOF detected

Environment

Traceback django/db/backends/utils.py in _execute at line 84

    with self.db.wrap_database_errors:
        if params is None:
            # params default might be backend specific.
            return self.cursor.execute(sql)
        else:
            return self.cursor.execute(sql, params) <-- line number 84
altairbow commented 1 year ago

Can you provide more details?

mishrsoumitra commented 1 year ago

Hello, Thanks for replying. What more details are required?

altairbow commented 1 year ago

In the case of using django.db.backends.postgresql, does the problem reproduce?