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 2017/06/28 19:37:53 UTC

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

Author: arkurth
Date: Wed Jun 28 19:37:53 2017
New Revision: 1800196

URL: http://svn.apache.org/viewvc?rev=1800196&view=rev
Log:
Trivial
Forgot to comment out lines used for debugging in earlier commit.

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

Modified: vcl/trunk/managementnode/lib/VCL/utils.pm
URL: http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/utils.pm?rev=1800196&r1=1800195&r2=1800196&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/utils.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/utils.pm Wed Jun 28 19:37:53 2017
@@ -820,19 +820,19 @@ END
 		open(STDOUT, ">>$log");
 		
 		# ARK - for testing competing reservations
-		if ($ENV{reservation_id}) {
-			if ($ENV{reservation_id} == 3115) {
-				print colored($log_message, "YELLOW");
-			}
-			elsif ($ENV{reservation_id} == 3116) {
-				print colored($log_message, "CYAN");
-			}
-			else {
-				print colored($log_message, "MAGENTA");
-			}
-			print "\n";
-			return 1;
-		}
+		#if ($ENV{reservation_id}) {
+		#	if ($ENV{reservation_id} == 3115) {
+		#		print colored($log_message, "YELLOW");
+		#	}
+		#	elsif ($ENV{reservation_id} == 3116) {
+		#		print colored($log_message, "CYAN");
+		#	}
+		#	else {
+		#		print colored($log_message, "MAGENTA");
+		#	}
+		#	print "\n";
+		#	return 1;
+		#}
 		print STDOUT "$log_message\n";
 	}
 } ## end sub notify