Fix price cache. Add OSVersion to PIng controller

This commit is contained in:
2025-04-09 11:56:15 -04:00
parent 88d709a4d2
commit 170b11bb7d
2 changed files with 11 additions and 0 deletions

View File

@@ -15,5 +15,12 @@ namespace MarketDataServer.Controllers
MDTrace.WriteLine(LogLevel.DEBUG,String.Format("[{0:G}][PingController::GetPing]", DateTime.Now));
return true;
}
[HttpGet(Name = "GetSystemInfo")]
public String GetSystemInfo()
{
MDTrace.WriteLine(LogLevel.DEBUG,String.Format("[{0:G}][PingController::GetSystemInfo]", DateTime.Now));
return Environment.VersionString.;
}
}
}