Skip to content

Commit

Permalink
use kmsauth performance parameters (#412)
Browse files Browse the repository at this point in the history
Followup to lyft/python-kmsauth#18

Start using the new performance parameters in kmsauth
  • Loading branch information
ramonpetgrave64 authored Oct 20, 2023
1 parent 59bae42 commit 246509b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions confidant/authnz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ def _get_validator():
token_cache_size=settings.KMS_AUTH_TOKEN_CACHE_SIZE,
stats=stats,
endpoint_url=settings.KMS_URL,
max_pool_connections=settings.KMS_MAX_POOL_CONNECTIONS,
connect_timeout=settings.KMS_CONNECTION_TIMEOUT,
read_timeout=settings.KMS_READ_TIMEOUT,
)
return _VALIDATOR

Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ statsd
# License: Apache2
# Upstream url: https://github.com/lyft/python-kmsauth
# Use: kmsauth support library
kmsauth
kmsauth==0.6.2

# License: Apache2
# Upstream url: https://pypi.python.org/pypi/toasted-marshmallow
Expand Down
2 changes: 1 addition & 1 deletion requirements3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jmespath==0.10.0
# botocore
jwcrypto==1.5.0
# via -r requirements.in
kmsauth==0.6.0
kmsauth==0.6.2
# via -r requirements.in
lru-dict==1.2.0
# via -r requirements.in
Expand Down

0 comments on commit 246509b

Please sign in to comment.