You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by ar...@apache.org on 2015/02/03 19:41:11 UTC

svn commit: r1656883 - /vcl/trunk/managementnode/lib/VCL/Module/State.pm

Author: arkurth
Date: Tue Feb  3 18:41:11 2015
New Revision: 1656883

URL: http://svn.apache.org/r1656883
Log:
VCL-16
Accidentally left section of State.pm commented out for testing in last commit.

Modified:
    vcl/trunk/managementnode/lib/VCL/Module/State.pm

Modified: vcl/trunk/managementnode/lib/VCL/Module/State.pm
URL: http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/State.pm?rev=1656883&r1=1656882&r2=1656883&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/State.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/State.pm Tue Feb  3 18:41:11 2015
@@ -114,12 +114,12 @@ sub initialize {
 		$self->data->set_reservation_lastcheck_time($reservation_lastcheck);
 	}
 	
-	#### If this is a cluster request, wait for all reservations to begin before proceeding
-	###if ($reservation_count > 1) {
-	###	if (!$self->wait_for_all_reservations_to_begin('begin', 90, 5)) {
-	###		$self->reservation_failed("failed to detect start of processing for all reservation processes", 'available');
-	###	}
-	###}
+	# If this is a cluster request, wait for all reservations to begin before proceeding
+	if ($reservation_count > 1) {
+		if (!$self->wait_for_all_reservations_to_begin('begin', 90, 5)) {
+			$self->reservation_failed("failed to detect start of processing for all reservation processes", 'available');
+		}
+	}
 	
 	# Parent reservation needs to update the request state to pending
 	if ($is_parent_reservation) {