1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-16 01:51:21 +01:00

db password for stub

This commit is contained in:
Kyle Spearrin 2019-03-15 11:13:35 -04:00
parent ff163a2859
commit 1adc6d04ed

View File

@ -68,7 +68,7 @@ namespace Bit.Setup
private void Init()
{
var dbPassword = Helpers.SecureRandomString(32);
var dbPassword = _context.Stub ? "DATABASE_PASSWORD" : Helpers.SecureRandomString(32);
var dbConnectionString = new SqlConnectionStringBuilder
{
DataSource = "tcp:mssql,1433",