-
Notifications
You must be signed in to change notification settings - Fork 286
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
Update mysql 8 connection string for localdb tests #4710
Conversation
db.driver=com.mysql.jdbc.Driver | ||
db.connection_string=jdbc:mysql://cbioportal-database-container/ | ||
db.connection_string=jdbc:mysql://cbioportal-database:3306/cbioportal?useSSL=false&allowPublicKeyRetrieval=true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why does this have a different name from:
https://github.com/cBioPortal/cbioportal-docker-compose/blob/master/docker-compose.yml#L24
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@inodb In my understanding, using a custom container name and service name is the same, in this case, we are using the service name, I just wanted to keep in sync with other places we have:
https://github.com/cBioPortal/cbioportal-docker-compose/pull/22/files
https://github.com/cBioPortal/cbioportal/pull/10037/files#diff-65ae1168eecd2c82b28b52c8a2c70866716e326bfa781144b33f0d74909103d9R49
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, changes are correct.
The PR will update the local e2e test with the latest DB connection string and delete outdated ones.