RESOLVED FIXED 196229
[ews-build] Use PostgreSQL for ews-build database
https://bugs.webkit.org/show_bug.cgi?id=196229
Summary [ews-build] Use PostgreSQL for ews-build database
Aakash Jain
Reported 2019-03-25 16:51:26 PDT
Use PostgreSQL for ews-build database since it's much better than the default sqlite.
Attachments
Patch (1.90 KB, patch)
2019-03-25 16:52 PDT, Aakash Jain
lforschler: review+
Aakash Jain
Comment 1 2019-03-25 16:52:32 PDT
Lucas Forschler
Comment 2 2019-03-26 09:50:17 PDT
Comment on attachment 365920 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=365920&action=review > Tools/BuildSlaveSupport/ews-build/master.cfg:31 > + password = os.getenv('DB_PASSWORD', None) I'd stick with your convention above and call these db_username and db_password > Tools/BuildSlaveSupport/ews-build/master.cfg:32 > + if db_url is None or db_name is None or password is None or username is None: I find long comparisons like this clunky... how about something like: if None in [db_url, db_name, db_username, db_password]:
Lucas Forschler
Comment 3 2019-03-26 09:56:20 PDT
Comment on attachment 365920 [details] Patch r+ with above changes.
Aakash Jain
Comment 4 2019-03-26 11:20:25 PDT
Radar WebKit Bug Importer
Comment 5 2019-03-26 11:21:26 PDT
Note You need to log in before you can comment on or make changes to this bug.