By default, Django assumes it can derive the connection details from just the settings dict. In this case, that won't work as the password is generated on the fly.
The solution appears to be a custom DatabaseClient, which passes the password in where needed to the settings_to_cmd_args_env.
By default, Django assumes it can derive the connection details from just the settings dict. In this case, that won't work as the password is generated on the fly.
The solution appears to be a custom
DatabaseClient, which passes the password in where needed to thesettings_to_cmd_args_env.