You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by ne...@apache.org on 2017/05/09 20:54:22 UTC

[1/2] incubator-trafficcontrol git commit: Will not try to download lua files referenced in remap.config

Repository: incubator-trafficcontrol
Updated Branches:
  refs/heads/master 6abcd0c8a -> 8927437fb


Will not try to download lua files referenced in remap.config


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

Branch: refs/heads/master
Commit: 1b3b2acabae0bb2c2b24499e85448010318de615
Parents: 6abcd0c
Author: Derek Gelinas <de...@cable.comcast.com>
Authored: Tue May 9 16:47:50 2017 -0400
Committer: David Neuman <da...@gmail.com>
Committed: Tue May 9 14:54:00 2017 -0600

----------------------------------------------------------------------
 traffic_ops/bin/traffic_ops_ort.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/1b3b2aca/traffic_ops/bin/traffic_ops_ort.pl
----------------------------------------------------------------------
diff --git a/traffic_ops/bin/traffic_ops_ort.pl b/traffic_ops/bin/traffic_ops_ort.pl
index 1c77567..0e0970f 100755
--- a/traffic_ops/bin/traffic_ops_ort.pl
+++ b/traffic_ops/bin/traffic_ops_ort.pl
@@ -1265,7 +1265,7 @@ sub check_plugins {
 					( my @parts ) = split( /\//, $plugin_config_file );
 					$plugin_config_file = $parts[$#parts];
 					$plugin_config_file =~ s/\s+//g;
-					if ( !exists($cfg_file_tracker->{$plugin_config_file}->{'remap_plugin_config_file'}) ) {
+					if ( !exists($cfg_file_tracker->{$plugin_config_file}->{'remap_plugin_config_file'} && $plugin_config_file !~ /.lua$/ ) ) {
 						$cfg_file_tracker->{$plugin_config_file}->{'remap_plugin_config_file'} = 1;
 					}
 				}


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

Posted by ne...@apache.org.
This closes #562


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

Branch: refs/heads/master
Commit: 8927437fb7b55c78d5a953fcbe6c3dec04e473ff
Parents: 1b3b2ac
Author: David Neuman <da...@gmail.com>
Authored: Tue May 9 14:54:15 2017 -0600
Committer: David Neuman <da...@gmail.com>
Committed: Tue May 9 14:54:15 2017 -0600

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

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