Skip to content

Commit

Permalink
pricing-plan is a deprecated parameter when creating cloud sql instan…
Browse files Browse the repository at this point in the history
…ces on GCP.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=300365072
  • Loading branch information
NathanTeeuwen authored and bvliu committed Mar 12, 2020
1 parent 28cd0e2 commit bdd046c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions perfkitbenchmarker/providers/gcp/gcp_relational_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ class GCPRelationalDb(relational_db.BaseRelationalDb):
MySQL 5.7 and Postgres 9.6 are supported.
"""
CLOUD = providers.GCP
GCP_PRICING_PLAN = 'PACKAGE'

def __init__(self, relational_db_spec):
super(GCPRelationalDb, self).__init__(relational_db_spec)
Expand Down Expand Up @@ -125,7 +124,6 @@ def _CreateGcloudSqlInstance(self):
'--authorized-networks=%s' % authorized_network,
'--zone=%s' % instance_zone,
'--database-version=%s' % database_version_string,
'--pricing-plan=%s' % self.GCP_PRICING_PLAN,
'--storage-size=%d' % storage_size,
]
if self.spec.engine == relational_db.MYSQL:
Expand Down

0 comments on commit bdd046c

Please sign in to comment.