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 2016/07/11 18:21:10 UTC

svn commit: r1752191 - /vcl/trunk/managementnode/lib/VCL/inuse.pm

Author: arkurth
Date: Mon Jul 11 18:21:10 2016
New Revision: 1752191

URL: http://svn.apache.org/viewvc?rev=1752191&view=rev
Log:
Fixed typos for a subroutines I decided to rename in a previous commit. I removed the underscore from the subroutine names but not the calls.

Modified:
    vcl/trunk/managementnode/lib/VCL/inuse.pm

Modified: vcl/trunk/managementnode/lib/VCL/inuse.pm
URL: http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/inuse.pm?rev=1752191&r1=1752190&r2=1752191&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/inuse.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/inuse.pm Mon Jul 11 18:21:10 2016
@@ -223,7 +223,7 @@ sub process {
 			
 			# Notify user when 5 or 10 minutes remain
 			if ($request_remaining_minutes == 5 || $request_remaining_minutes == 10) {
-				$self->_notify_user_endtime_imminent("$request_remaining_minutes minutes");
+				$self->notify_user_endtime_imminent("$request_remaining_minutes minutes");
 			}
 			
 			if ($iteration < $end_time_notify_minutes) {
@@ -233,7 +233,7 @@ sub process {
 		}
 		
 		# Notify user - endtime and image capture has started
-		$self->_notify_user_endtime_reached();
+		$self->notify_user_endtime_reached();
 		
 		# Initiate auto-capture process if this is an imaging request and not a cluster reservation
 		if ($request_forimaging && $reservation_count == 1) {
@@ -255,7 +255,7 @@ sub process {
 		# Check end time for a notice interval - returns 0 if no notice is to be given
 		my $notice_interval = check_endtimenotice_interval($request_end);
 		if ($notice_interval) {
-			$self->_notify_user_future_endtime($notice_interval);
+			$self->notify_user_future_endtime($notice_interval);
 		}
 	}
 	else {
@@ -329,7 +329,7 @@ sub process {
 			# Update reservation lastcheck, otherwise request will be processed immediately again
 			update_reservation_lastcheck($reservation_id);
 			
-			$self->_notify_user_timeout_inactivity();
+			$self->notify_user_timeout_inactivity();
 			$self->state_exit('timeout', 'inuse', 'timeout');
 		}
 	}