Skip to content
New issue

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

fix temp rds instance bug #28

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open

Conversation

timoseven
Copy link

当rds是临时实例的时候,DBInstanceDescription和PayType会报错。

@@ -104,12 +104,12 @@ def get_dbinstance(self, instance_id):
resp['DBInstanceId'],
resp['RegionId'],
resp['DBInstanceClass'],
resp['DBInstanceDescription'],
resp['DBInstanceDescription'] if resp.has_key("DBInstanceDescription") else 'None',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should just be None not 'None'?

resp['DBInstanceStatus'],
resp['SecurityIPList'],
resp['CreationTime'],
resp['ExpireTime'],
resp['PayType'],
resp['PayType'] if resp.has_key("PayType") else 'None',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here. We don't want to print literally "None" we want it to be empty.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants