Author: arkurth
Date: Wed Dec 2 20:14:04 2015
New Revision: 1717674
URL: http://svn.apache.org/viewvc?rev=1717674&view=rev
Log:
VCL-893
Changed $initial_delay_seconds in Version_6.pm::wait_for_response from 30
seconds to 5. Windows 10 images use this subroutine after a computer is powered
on, and can boot faster than 30 seconds. This will decrease the load time if
this is the case.
Modified:
vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6.pm
Modified: vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6.pm
URL:
http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6.pm?rev=1717674&r1=1717673&r2=1717674&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6.pm Wed Dec 2
20:14:04 2015
@@ -2139,7 +2139,7 @@ sub wait_for_response {
my $ssh_response_timeout_seconds;
if ($self->data->get_imagemeta_sysprep()) {
- $initial_delay_seconds = 30;
+ $initial_delay_seconds = 5;
$ssh_response_timeout_seconds = 1800;
}
else {