From 4fe3fbabf0f63034952788c5b3823d5b84279ac3 Mon Sep 17 00:00:00 2001 From: Ajay Bhargav Baaskaran Date: Tue, 16 Jun 2015 11:27:33 -0700 Subject: [PATCH] React to aspnet/Diagnostics#142 changes --- test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs b/test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs index 76cefc837b..48e8214367 100644 --- a/test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs +++ b/test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs @@ -2,7 +2,6 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.AspNet.Builder; -using Microsoft.AspNet.Diagnostics; using Microsoft.Framework.DependencyInjection; namespace ErrorPageMiddlewareWebSite @@ -19,7 +18,7 @@ namespace ErrorPageMiddlewareWebSite { app.UseCultureReplacer(); - app.UseErrorPage(ErrorPageOptions.ShowAll); + app.UseErrorPage(); app.UseMvc(); } }