You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by hb...@apache.org on 2017/05/18 14:32:27 UTC

[1/2] incubator-trafficcontrol git commit: [TC-172] Add CURLOPT_FOLLOWLOCATION Note: Not setting a limit and it is unlimited by default

Repository: incubator-trafficcontrol
Updated Branches:
  refs/heads/master 77cd3adca -> c9006d201


[TC-172] Add CURLOPT_FOLLOWLOCATION
Note: Not setting a limit and it is unlimited by default


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

Branch: refs/heads/master
Commit: 012097ea856368e0da05a029e675865e6f2c1507
Parents: 77cd3ad
Author: smalenfa <sm...@apache.org>
Authored: Mon Feb 27 18:16:25 2017 -0500
Committer: hbeatty <hb...@users.noreply.github.com>
Committed: Thu May 18 10:30:22 2017 -0400

----------------------------------------------------------------------
 traffic_ops/install/lib/WebDep.pm | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/012097ea/traffic_ops/install/lib/WebDep.pm
----------------------------------------------------------------------
diff --git a/traffic_ops/install/lib/WebDep.pm b/traffic_ops/install/lib/WebDep.pm
index edf25fb..a899ac9 100644
--- a/traffic_ops/install/lib/WebDep.pm
+++ b/traffic_ops/install/lib/WebDep.pm
@@ -200,6 +200,7 @@ sub curlMe {
     $curl->setopt( CURLOPT_CONNECTTIMEOUT, 5 );
     $curl->setopt( CURLOPT_TIMEOUT,        15 );
     $curl->setopt( CURLOPT_HEADER,         0 );
+    $curl->setopt( CURLOPT_FOLLOWLOCATION, 1 );
     $curl->setopt( CURLOPT_URL,            $url );
     $curl->setopt( CURLOPT_WRITEDATA,      \$response_body );
     my $retcode       = $curl->perform;


[2/2] incubator-trafficcontrol git commit: This closes #319

Posted by hb...@apache.org.
This closes #319


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

Branch: refs/heads/master
Commit: c9006d2017f8e61eb2c928b301bfb3bf8b24e2b4
Parents: 012097e
Author: hbeatty <hb...@users.noreply.github.com>
Authored: Thu May 18 10:31:52 2017 -0400
Committer: hbeatty <hb...@users.noreply.github.com>
Committed: Thu May 18 10:31:52 2017 -0400

----------------------------------------------------------------------

----------------------------------------------------------------------