We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We seem to have a mix of clients imported from either the dss or dcplib. We should probably consolidate and use one set.
For example both:
from dcplib.aws.clients import logs
or
from dss.util.aws.clients import dynamodb as db
...are used in the DSS and we should probably import all of our clients from only one.
The text was updated successfully, but these errors were encountered:
While we're at it, we should probably check for boto3 clients too:
import boto3 client = boto3.client('dynamodb')
Sorry, something went wrong.
No branches or pull requests
We seem to have a mix of clients imported from either the dss or dcplib. We should probably consolidate and use one set.
For example both:
from dcplib.aws.clients import logs
or
from dss.util.aws.clients import dynamodb as db
...are used in the DSS and we should probably import all of our clients from only one.
The text was updated successfully, but these errors were encountered: