Agent: Drop CREDENTIALS_POLL_PERIOD_SEC from 30 to 10

This commit is contained in:
Mike Salvatore 2022-05-02 15:25:32 -04:00
parent 86c6a55097
commit 0fce4e88a5
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ from .i_credentials_store import ICredentialsStore
logger = logging.getLogger(__name__)
CREDENTIALS_POLL_PERIOD_SEC = 30
CREDENTIALS_POLL_PERIOD_SEC = 10
class AggregatingCredentialsStore(ICredentialsStore):