Add support for visability mode

This commit is contained in:
David Gambarin
2022-12-26 11:04:51 +02:00
parent 9ec8858a15
commit 27d1d00379
26 changed files with 1014 additions and 103 deletions

View File

@@ -68,7 +68,7 @@ public:
return genError("Cannot execute an empty command");
}
uint max_ms_tmout = getConfigurationWithDefault(10000u, "Infra", "Shell Command Timeout");
uint max_ms_tmout = getConfigurationWithDefault(400000u, "Infra", "Shell Command Timeout");
if (ms_tmout > max_ms_tmout) {
return genError("Provided timeout is too long, max timeout is " + to_string(max_ms_tmout));
}