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

[2/4] incubator-trafficcontrol git commit: fixes bug. wrong config param being used.

fixes bug. wrong config param being used.


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

Branch: refs/heads/master
Commit: 4ab3b38d56a0c88d3f5b7eead187d5b69a4b449f
Parents: a9fd1b4
Author: Jeremy Mitchell <mi...@gmail.com>
Authored: Thu Mar 9 15:56:19 2017 -0700
Committer: Dewayne Richardson <de...@apache.org>
Committed: Tue Mar 14 08:10:56 2017 -0600

----------------------------------------------------------------------
 test/traffic_ops_cfg/cfg_test.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/4ab3b38d/test/traffic_ops_cfg/cfg_test.pl
----------------------------------------------------------------------
diff --git a/test/traffic_ops_cfg/cfg_test.pl b/test/traffic_ops_cfg/cfg_test.pl
index 852aa97..5248260 100755
--- a/test/traffic_ops_cfg/cfg_test.pl
+++ b/test/traffic_ops_cfg/cfg_test.pl
@@ -72,7 +72,7 @@ sub get_new {
 		$config->{to_passwd} = &get_to_passwd( $config->{to_user} );
 	}
 	my $to_login = $config->{to_user} . ":" . $config->{to_passwd};
-	$cookie = &get_cookie( $config->{ref_to_url}, $to_login );
+	$cookie = &get_cookie( $config->{to_url}, $to_login );
 	$CURL_OPTS = "-H 'Cookie: $cookie' -w %{response_code} -k -L -s -S --connect-timeout 5 --retry 5 --retry-delay 5 --basic";
 
 	$tmp_dir = $tmp_dir_base . "/new";