CA-204172: Switch Health Check URLs to the production site

Also use 0 (never expire) for the diagnostic token.

Signed-off-by: Mihaela Stoica <Mihaela.Stoica@citrix.com>
This commit is contained in:
Mihaela Stoica 2016-03-16 10:00:23 +00:00
parent da21dac32c
commit 9c9312c113
4 changed files with 5 additions and 5 deletions

View File

@ -172,7 +172,7 @@
<value>7</value>
</data>
<data name="policyStatementTextBox.Text" xml:space="preserve">
<value>The information that Health Check uploads to [Citrix] Insight Services will be used for troubleshooting and diagnostics support purposes, as well as to improve the quality, reliability, and performance of our products subject to the [Citrix] Insight Services Policy at https://taas.citrix.com/legal/ and [Citrix] Privacy Policy at http://www.citrix.com/about/legal/privacy.html.</value>
<value>The information that Health Check uploads to [Citrix] Insight Services will be used for troubleshooting and diagnostics support purposes, as well as to improve the quality, reliability, and performance of our products subject to the [Citrix] Insight Services Policy at https://cis.citrix.com/legal/ and [Citrix] Privacy Policy at http://www.citrix.com/about/legal/privacy.html.</value>
</data>
<data name="&gt;&gt;policyStatementTextBox.Name" xml:space="preserve">
<value>policyStatementTextBox</value>

View File

@ -45,7 +45,7 @@ namespace XenAdmin.Actions
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
private const string DIAG_RESULT_URL = "/diag_sdk/diag_results/";
private readonly string diagnosticDomainName = "https://taas.citrix.com";
private readonly string diagnosticDomainName = "https://cis.citrix.com";
public GetHealthCheckAnalysisResultAction(Pool pool, bool suppressHistory)
: base(pool.Connection, Messages.ACTION_GET_HEALTH_CHECK_RESULT, Messages.ACTION_GET_HEALTH_CHECK_RESULT_PROGRESS, suppressHistory)

View File

@ -58,7 +58,7 @@ namespace XenAdmin.Actions
private readonly string identityTokenDomainName = "https://cis.citrix.com";
private readonly string uploadGrantTokenDomainName = "https://rttf.citrix.com";
private readonly string uploadTokenDomainName = "https://rttf.citrix.com";
private readonly string diagnosticTokenDomainName = " https://taas.citrix.com";
private readonly string diagnosticTokenDomainName = " https://cis.citrix.com";
private readonly string productKey = "1a2d94a4263cd016dd7a7d510bde87f058a0b75d";
@ -195,7 +195,7 @@ namespace XenAdmin.Actions
var json = new JavaScriptSerializer().Serialize(new
{
agent = "XenServer",
max_age = 31536000 // one year
max_age = tokenExpiration
});
var urlString = string.Format("{0}{1}", diagnosticTokenDomainName, diagnosticTokenUrl);

View File

@ -95,7 +95,7 @@ namespace XenAdmin.Model
public const string REPORT_ANALYSIS_UPLOAD_TIME = "ReportAnalysis.UploadTime";
private const string REPORT_LINK_DOMAIN_NAME = " https://taas.citrix.com";
private const string REPORT_LINK_DOMAIN_NAME = " https://cis.citrix.com";
private const string REPORT_LINK_PATH = "AutoSupport/analysis/upload_overview";
public HealthCheckSettings(Dictionary<string, string> config)