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/01/25 17:19:22 UTC

[1/3] incubator-trafficcontrol git commit: casts 0|1 to bools (tc-103)

Repository: incubator-trafficcontrol
Updated Branches:
  refs/heads/master c78c9b08f -> cef0859e0


casts 0|1 to bools (tc-103)


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

Branch: refs/heads/master
Commit: 3bed680e6b08ba8ce57843a062d5f574bfab7f77
Parents: 6f8a062
Author: Jeremy Mitchell <mi...@gmail.com>
Authored: Wed Jan 25 10:11:01 2017 -0700
Committer: Jeremy Mitchell <mi...@gmail.com>
Committed: Wed Jan 25 10:11:01 2017 -0700

----------------------------------------------------------------------
 traffic_ops/app/lib/UI/Server.pm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/3bed680e/traffic_ops/app/lib/UI/Server.pm
----------------------------------------------------------------------
diff --git a/traffic_ops/app/lib/UI/Server.pm b/traffic_ops/app/lib/UI/Server.pm
index 5ff0daa..e3056cc 100644
--- a/traffic_ops/app/lib/UI/Server.pm
+++ b/traffic_ops/app/lib/UI/Server.pm
@@ -918,10 +918,10 @@ sub readupdate {
 			push(
 				@data, {
 					host_name      => $row->host_name,
-					upd_pending    => $row->upd_pending,
+					upd_pending    => \$row->upd_pending,
 					host_id        => $row->id,
 					status         => $row->status->name,
-					parent_pending => "1"
+					parent_pending => \1
 				}
 			);
 		}
@@ -929,10 +929,10 @@ sub readupdate {
 			push(
 				@data, {
 					host_name      => $row->host_name,
-					upd_pending    => $row->upd_pending,
+					upd_pending    => \$row->upd_pending,
 					host_id        => $row->id,
 					status         => $row->status->name,
-					parent_pending => "0"
+					parent_pending => \0
 				}
 			);
 		}


[3/3] incubator-trafficcontrol git commit: This closes #231

Posted by de...@apache.org.
This closes #231


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

Branch: refs/heads/master
Commit: cef0859e0fe82f17bf0326e35fe9c98709fe547e
Parents: 82f77dd
Author: Dewayne Richardson <de...@apache.org>
Authored: Wed Jan 25 10:19:12 2017 -0700
Committer: Dewayne Richardson <de...@apache.org>
Committed: Wed Jan 25 10:19:12 2017 -0700

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

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



[2/3] incubator-trafficcontrol git commit: Merge branch 'tc-103' of https://github.com/mitchell852/incubator-trafficcontrol

Posted by de...@apache.org.
Merge branch 'tc-103' of https://github.com/mitchell852/incubator-trafficcontrol


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

Branch: refs/heads/master
Commit: 82f77dda829ed813e622b4c11682e35d84b692ca
Parents: c78c9b0 3bed680
Author: Dewayne Richardson <de...@apache.org>
Authored: Wed Jan 25 10:19:10 2017 -0700
Committer: Dewayne Richardson <de...@apache.org>
Committed: Wed Jan 25 10:19:10 2017 -0700

----------------------------------------------------------------------
 traffic_ops/app/lib/UI/Server.pm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------