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 2011/06/30 19:49:20 UTC

svn commit: r1141637 - /incubator/vcl/trunk/managementnode/lib/VCL/utils.pm

Author: arkurth
Date: Thu Jun 30 17:49:20 2011
New Revision: 1141637

URL: http://svn.apache.org/viewvc?rev=1141637&view=rev
Log:
VCL-428
Fixed syntax error typo in utils.pm.

Modified:
    incubator/vcl/trunk/managementnode/lib/VCL/utils.pm

Modified: incubator/vcl/trunk/managementnode/lib/VCL/utils.pm
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/managementnode/lib/VCL/utils.pm?rev=1141637&r1=1141636&r2=1141637&view=diff
==============================================================================
--- incubator/vcl/trunk/managementnode/lib/VCL/utils.pm (original)
+++ incubator/vcl/trunk/managementnode/lib/VCL/utils.pm Thu Jun 30 17:49:20 2011
@@ -4491,7 +4491,7 @@ sub get_request_info {
 		
 		# Retrieve the image, imagerevision, and computer info and add to the hash
 		my $image_id = $request_info{reservation}{$reservation_id}{imageid};
-		my $image_info = get_image_info($image_id)) {
+		my $image_info = get_image_info($image_id);
 		$request_info{reservation}{$reservation_id}{image} = $image_info;
 		
 		my $imagerevision_id = $request_info{reservation}{$reservation_id}{imagerevisionid};