Ook Server.ScriptTimeout vermelden

svn path=/Website/trunk/; revision=27587
This commit is contained in:
Jos Groot Lipman
2016-01-04 10:37:51 +00:00
parent ffeb885a67
commit 112160fbee

View File

@@ -384,7 +384,7 @@ checker("Session.Timeout",
res = resultcodes.warning;
return { result: res,
message: "Session timeout is " + Session.Timeout + " minutes.",
info: String(Session.Timeout) + " minutes."
info: String(Session.Timeout) + " minutes"
};
}
)
@@ -420,6 +420,19 @@ checker("Session.LCID",
}
)
checker("Server.ScriptTimeout",
function ()
{
var res = resultcodes.ok;
if (Server.ScriptTimeout < 30) // Minder dan 30 seconde?
res = resultcodes.warning;
return { result: res,
message: "Script timeout is " + Server.ScriptTimeout + " seconds.",
info: String(Server.ScriptTimeout) + " seconds"
};
}
)
checker("Max download (Response Buffering Limit)",
function ()
{