psycopg2.OperationalError: unable to read data DETAIL: child connection forced to terminate due to client_idle_limit:10 is reached server closed the connection unexpectedly This probably means the server terminated abnormally before or while processing the request.
""" @author:knktc @create:2019-12-16 09:43 """ from django.db import models
classTestPgpool(models.Model): secs = models.IntegerField(help_text='sleep seconds') status = models.CharField(max_length=16, help_text='set start when test starts and set end when test ends') create_time = models.DateTimeField(auto_now_add=True) update_time = models.DateTimeField(auto_now=True)