From 3acb51ff911b92b44820fde470ea25c23a3d272f Mon Sep 17 00:00:00 2001 From: "Chris.Watts90@outlook.com" Date: Tue, 21 Feb 2017 12:08:36 +0000 Subject: [PATCH] changed the main DataCenterService thread name to make it useful/relevant. --- .../WindowsDataCenter/WindowsDataCenter/DataCenterService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/DataCenterService.cs b/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/DataCenterService.cs index b3c551b..516e566 100644 --- a/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/DataCenterService.cs +++ b/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/DataCenterService.cs @@ -49,7 +49,7 @@ namespace WindowsDataCenter _mainWorkerThread = new Thread(MainWorkerThread) { IsBackground = false, - Name = "OWIN SELF HOST MAIN THREAD" + Name = "DATACENTER SELF HOST MAIN THREAD" }; var endpointPort = ConfigurationManager.AppSettings["WebsiteHttpPort"] ?? "8800";