fix #4969 - improve feedback and flow when connection string points to an invalid database

This commit is contained in:
sbwalker
2025-01-13 07:48:30 -05:00
parent 44ce68097b
commit 3468cba000
3 changed files with 12 additions and 5 deletions

View File

@ -25,7 +25,10 @@ namespace Oqtane.Server
filelogger.LogError($"[Oqtane.Server.Program.Main] {install.Message}");
}
}
host.Run();
else
{
host.Run();
}
}
public static IWebHost BuildWebHost(string[] args) =>