Improved "tenant initializing" status description.

This commit is contained in:
Sipke Schoorstra
2015-09-10 23:20:33 +01:00
parent 9897f6ada5
commit e97d54e600

View File

@@ -362,8 +362,8 @@ namespace Orchard.Environment {
if (runningShell.State == TenantState.Initializing) {
var response = httpContext.Response;
response.StatusCode = 503;
response.StatusDescription = "Orchard is currently setting up. Please check back in a few moments.";
response.Write("Orchard is currently setting up. Please check back in a few moments.");
response.StatusDescription = "This tenant is currently initializing. Please try again later.";
response.Write("This tenant is currently initializing. Please try again later.");
}
}