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

[18/24] incubator-trafficcontrol git commit: Fixed the Use of uninitialized value in concatenation (.) or string at

Fixed the Use of uninitialized value in concatenation (.) or string at

(cherry picked from commit 610c6c22f44a221206e4e53b69e0c0c806c32793)


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

Branch: refs/heads/2.0.x
Commit: ac0df8030ff207665b1a040e1806175438d9b404
Parents: d65a9f1
Author: Dewayne Richardson <de...@apache.org>
Authored: Mon May 22 07:34:38 2017 -0600
Committer: Eric Friedrich <fr...@apache.org>
Committed: Wed May 31 10:08:57 2017 -0400

----------------------------------------------------------------------
 traffic_ops/install/bin/_postinstall | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/ac0df803/traffic_ops/install/bin/_postinstall
----------------------------------------------------------------------
diff --git a/traffic_ops/install/bin/_postinstall b/traffic_ops/install/bin/_postinstall
index 6d336e1..1ecda45 100755
--- a/traffic_ops/install/bin/_postinstall
+++ b/traffic_ops/install/bin/_postinstall
@@ -651,7 +651,7 @@ sub insert_parameters {
     # Enable multiple inserts into one commit
     $dbh->{pg_server_prepare} = 0;
 
-    my $insert_stmt = <<"INSERTS";
+    my $insert_stmt = <<'INSERTS';
 
     -- global parameters
     insert into parameter (name, config_file, value) 
@@ -689,7 +689,7 @@ sub insert_profiles {
     my $paramconf = shift;
 
     InstallUtils::logger( "\n=========== Setting up profiles", "info" );
-    my $insert_stmt = <<"INSERTS";
+    my $insert_stmt = <<'INSERTS';
 
     -- global parameters
     insert into profile (name, description)