You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by mt...@apache.org on 2017/05/08 16:05:04 UTC

[2/5] incubator-trafficcontrol git commit: still more dumper stuff

still more dumper stuff


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/ba4b18c7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/ba4b18c7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/ba4b18c7

Branch: refs/heads/master
Commit: ba4b18c79d5235a7ef913e48f89e869ed4797ff4
Parents: e7275a5
Author: Derek Gelinas <de...@cable.comcast.com>
Authored: Sun May 7 20:36:30 2017 -0400
Committer: Mark Torluemke <mt...@apache.org>
Committed: Mon May 8 16:03:34 2017 +0000

----------------------------------------------------------------------
 traffic_ops/app/lib/API/Configs/ApacheTrafficServer.pm | 7 -------
 1 file changed, 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/ba4b18c7/traffic_ops/app/lib/API/Configs/ApacheTrafficServer.pm
----------------------------------------------------------------------
diff --git a/traffic_ops/app/lib/API/Configs/ApacheTrafficServer.pm b/traffic_ops/app/lib/API/Configs/ApacheTrafficServer.pm
index b8140fd..02d7422 100644
--- a/traffic_ops/app/lib/API/Configs/ApacheTrafficServer.pm
+++ b/traffic_ops/app/lib/API/Configs/ApacheTrafficServer.pm
@@ -1922,9 +1922,6 @@ sub format_parent_info {
 sub parent_dot_config {
 	my $self       = shift;
 	my $server_obj = shift;
-	print STDERR "Start time:\n";
-	my $time = localtime;
-	print STDERR Dumper($time);
 	my $data;
 
 	my $server_type = $server_obj->type->name;
@@ -1939,7 +1936,6 @@ sub parent_dot_config {
 	if ( !defined($data) ) {
 		$data = $self->ds_data($server_obj);
 	}
-	$time = localtime;
 	if ( $server_type =~ m/^MID/ ) {
 		my @unique_origins;
 		foreach my $ds ( @{ $data->{dslist} } ) {
@@ -2124,9 +2120,6 @@ sub parent_dot_config {
 		}
 
 		$text .= "\n";
-		$time = localtime;
-        	print STDERR "Time after complete:\n";
-        	print STDERR Dumper($time);
 		return $text;
 	}
 }