Skip to content

Deprecated Database Settings

Matthew Hafner edited this page Aug 6, 2024 · 7 revisions

⚠️ Deprecated Database Settings ⚠️

The settings listed below are now considered deprecated. Although they still function as of version 1.48, functionality and support in future versions are not guaranteed.

  • mysql_host, mysql_db, mysql_user, mysql_pass - These settings are retiring, and are being replaced by the new db_* settings
  • nodb - In a later BedrockConnect version, the new planned default behavior will be to use no database without needing to set nodb to true, essentially retiring the need for nodb. (Where as the current default behavior is to attempt to connect to a MySQL database, unless nodb is set to true)

These changes only affect setups using a database. Any BedrockConnect setups currently not using a database by having nodb set to true, do not technically need to make any changes. Those non-database setups will continue to not use a database in future releases, the nodb portion will eventually just be redundant.

Any BedrockConnect setups utilizing a MySQL database in their setup should replace their current database settings with the following to ensure your database configuration is retained:

  • db_type: mysql
    ("mysql" is currently the default value for db_type, but planned to change to "none" in a future update. So it's recommended to have this manually set to mysql in your settings to prepare for the change)
  • db_host: (your current setting value for mysql_host)
  • db_db: (your current setting value for mysql_db)
  • db_user: (your current setting value for mysql_user)
  • db_pass: (your current setting value for mysql_pass)
Clone this wiki locally