issue-4135: updated-mysql-connection-json (#4136)

This commit is contained in:
codingwithabhi 2022-04-15 02:46:09 +05:30 committed by GitHub
parent eec9cb05d1
commit 8115c2ece4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -7,5 +7,5 @@ Provides metadata version information.
from incremental import Version
__version__ = Version("metadata", 0, 9, 0, dev=30)
__version__ = Version("metadata", 0, 9, 0, dev=31)
__all__ = ["__version__"]

View File

@ -4,7 +4,7 @@
"serviceName": "local_mysql",
"serviceConnection": {
"config": {
"type": "MySQL",
"type": "Mysql",
"username": "openmetadata_user",
"password": "openmetadata_password",
"hostPort": "localhost:3306"

View File

@ -65,7 +65,7 @@ def create_delete_database(client: OpenMetadata):
data = {
"databaseConnection": {"hostPort": "localhost"},
"name": "temp_local_mysql",
"serviceType": "MySQL",
"serviceType": "Mysql",
"description": "local mysql env",
}
create_mysql_service = CreateDatabaseServiceRequest(**data)