Skip to content
This repository was archived by the owner on Oct 21, 2022. It is now read-only.

Commit 65233c4

Browse files
authored
Remove google-cloud-ndb from whitelist (#262)
Replace google-cloud-ndb with googleapis/python-ndb
1 parent feec39b commit 65233c4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

compatibility_lib/compatibility_lib/compatibility_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def connect(self):
168168
port=self.mysql_port,
169169
user=self.mysql_user,
170170
password=self.mysql_password,
171-
db=_DATABASE_NAME,
171+
db=self.mysql_db,
172172
charset='utf8mb4')
173173
return conn
174174

compatibility_lib/compatibility_lib/configs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def _format_url(repo_name, setuppy_path=''):
102102
'google-cloud-iot',
103103
_format_url('googleapis/google-cloud-python', 'kms'):
104104
'google-cloud-kms',
105-
_format_url('googleapis/google-cloud-python', 'ndb'):
105+
_format_url('googleapis/python-ndb', ''):
106106
'google-cloud-ndb',
107107
# This is not released yet
108108
_format_url('googleapis/google-cloud-python', 'oslogin'):

compatibility_server/configs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def _format_url(repo_name, setuppy_path=''):
102102
'google-cloud-iot',
103103
_format_url('googleapis/google-cloud-python', 'kms'):
104104
'google-cloud-kms',
105-
_format_url('googleapis/google-cloud-python', 'ndb'):
105+
_format_url('googleapis/python-ndb', ''):
106106
'google-cloud-ndb',
107107
# This is not released yet
108108
_format_url('googleapis/google-cloud-python', 'oslogin'):

0 commit comments

Comments
 (0)