You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by mi...@apache.org on 2017/04/10 21:52:43 UTC

[1/2] incubator-trafficcontrol git commit: fixes inserts to work on initial setup

Repository: incubator-trafficcontrol
Updated Branches:
  refs/heads/master 8ffe62bcf -> e9471cf88


fixes inserts to work on initial setup


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

Branch: refs/heads/master
Commit: c83efe1376bccb40960b370b6d8f3d8f7ba19166
Parents: 8ffe62b
Author: Dan Kirkwood <da...@gmail.com>
Authored: Mon Apr 10 15:46:53 2017 -0600
Committer: Jeremy Mitchell <mi...@gmail.com>
Committed: Mon Apr 10 15:52:44 2017 -0600

----------------------------------------------------------------------
 traffic_ops/app/db/seeds.sql | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/c83efe13/traffic_ops/app/db/seeds.sql
----------------------------------------------------------------------
diff --git a/traffic_ops/app/db/seeds.sql b/traffic_ops/app/db/seeds.sql
index d4f67ea..5ee624a 100644
--- a/traffic_ops/app/db/seeds.sql
+++ b/traffic_ops/app/db/seeds.sql
@@ -14,10 +14,10 @@
 */
 
 -- cdns
-insert into cdn (name, dnssec_enabled) values ('ALL', false) ON CONFLICT (name) DO NOTHING;
+insert into cdn (name, dnssec_enabled, domain_name) values ('ALL', false, '-') ON CONFLICT (name) DO NOTHING;
 
 -- job agents
-insert into job_agent (name, description, active) values ('dummy', 'Description of Purge Agent', true) ON CONFLICT (name) DO NOTHING;
+insert into job_agent (name, description, active) values ('dummy', 'Description of Purge Agent', 1) ON CONFLICT (name) DO NOTHING;
 
 -- job statuses
 insert into job_status (name, description) values ('PENDING', 'Job is queued, but has not been picked up by any agents yet') ON CONFLICT (name) DO NOTHING;


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

Posted by mi...@apache.org.
This closes #450


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

Branch: refs/heads/master
Commit: e9471cf885a9d25afd5bc5618cab11b06954f365
Parents: c83efe1
Author: Jeremy Mitchell <mi...@gmail.com>
Authored: Mon Apr 10 15:53:13 2017 -0600
Committer: Jeremy Mitchell <mi...@gmail.com>
Committed: Mon Apr 10 15:53:13 2017 -0600

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

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