diff --git a/CMS_SC/Scripts/BrowserWindowSize.js b/CMS_SC/Scripts/BrowserWindowSize.js index b2f04f7..b3606a7 100644 --- a/CMS_SC/Scripts/BrowserWindowSize.js +++ b/CMS_SC/Scripts/BrowserWindowSize.js @@ -18,7 +18,7 @@ function SetWidthHeight() { window.location.reload(); }; }).fail(function (xhr) { - alert("Problem to retrieve browser size."); + //alert("Problem to retrieve browser size."); }); } diff --git a/CMS_SC/windowSize.ashx.cs b/CMS_SC/windowSize.ashx.cs index ff2433b..af26567 100644 --- a/CMS_SC/windowSize.ashx.cs +++ b/CMS_SC/windowSize.ashx.cs @@ -26,10 +26,10 @@ namespace CMS_SC context.Session["BrowserWidth"] = context.Request.QueryString["Width"]; context.Session["BrowserHeight"] = context.Request.QueryString["Height"]; - // salvare in REDIS come conteggio INCREMENTALE... + // salva in REDIS come conteggio INCREMENTALE... if (memLayer.ML.CRB("SC_RedEnab")) { - string memName= string.Format("COUNT:wh:{0}x{1}", context.Request.QueryString["Width"], context.Request.QueryString["Height"]); + string memName = string.Format("COUNT:wh:{0}x{1}", context.Request.QueryString["Width"], context.Request.QueryString["Height"]); // conto +1 x la size nel contatore REDIS long nCall = memLayer.ML.setRCntI(memLayer.ML.redHash(memName)); } diff --git a/Jenkinsfile b/Jenkinsfile index e304bd9..c5a5623 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,7 @@ pipeline { /* calcolo numero versione... diverso x branch MASTER/DEVELOP */ script { - withEnv(['NEXT_BUILD_NUMBER=4236']) { + withEnv(['NEXT_BUILD_NUMBER=4237']) { // env.versionNumber = VersionNumber(versionNumberString : '3.2.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true) env.versionNumber = VersionNumber(versionNumberString : '3.2.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}') env.APP_NAME = 'CMS-SC'