This commit is contained in:
zandercymatics 2023-10-17 11:26:47 -06:00
parent d7c7fb9d23
commit b6921b3f4c
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 1 additions and 6 deletions

View file

@ -2,21 +2,16 @@ from unittest import skip
from unittest.mock import MagicMock, patch
from django.conf import settings
from django.test import Client
from django.test import TestCase
from epplibwrapper.client import EPPLibWrapper
from epplibwrapper.utility.pool import EPPConnectionPool
from registrar.models.domain import Domain
from registrar.tests.common import MockEppLib
from registrar.models.domain import registry
import logging
try:
from epplib.client import Client
from epplib import commands
from epplib.exceptions import TransportError
from epplib.responses import base
except ImportError:
pass

View file

@ -546,7 +546,7 @@ EPP_CONNECTION_POOL_SIZE = 1
# Determines the interval in which we ping open connections in seconds
# Calculated as POOL_KEEP_ALIVE / EPP_CONNECTION_POOL_SIZE
POOL_KEEP_ALIVE = 60 # Ping every 20 seconds
POOL_KEEP_ALIVE = 60
# Determines how long we try to keep a pool alive for,
# before restarting it.