Skip to content

Commit

Permalink
Change site creation message to match azure
Browse files Browse the repository at this point in the history
  • Loading branch information
davidebbo committed Nov 20, 2017
1 parent 4536402 commit 1a57d73
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Kudu.FunctionalTests/Infrastructure/KuduAssert.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace Kudu.FunctionalTests.Infrastructure
{
public static class KuduAssert
{
public const string DefaultPageContent = "has been created";
public const string DefaultPageContent = "is up and running";

public static T ThrowsUnwrapped<T>(Action action) where T : Exception
{
Expand Down
4 changes: 2 additions & 2 deletions Kudu.SiteManagement/SiteManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ public class SiteManager : ISiteManager
private const string HostingStartHtml = "hostingstart.html";
private const string HostingStartHtmlContents = @"<html>
<head>
<title>This web site has been created</title>
<title>This web site is up and running</title>
<style type=""text/css"">
BODY { color: #444444; background-color: #E5F2FF; font-family: verdana; margin: 0px; text-align: center; margin-top: 100px; }
H1 { font-size: 16pt; margin-bottom: 4px; }
</style>
</head>
<body>
<h1>This web site has been created</h1><br/>
<h1>This web site is up and running</h1><br/>
</body>
</html>";

Expand Down
2 changes: 1 addition & 1 deletion Kudu.TestHarness/SitePool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ private static void WriteIndexHtml(ApplicationManager appManager)
{
try
{
appManager.VfsWebRootManager.WriteAllText("hostingstart.html", "<h1>This web site has been created</h1>");
appManager.VfsWebRootManager.WriteAllText("hostingstart.html", "<h1>This web site is up and running</h1>");
}
catch (HttpRequestException ex)
{
Expand Down

0 comments on commit 1a57d73

Please sign in to comment.