You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by ro...@apache.org on 2019/02/14 23:40:33 UTC

[trafficcontrol] branch master updated (94ef4a6 -> ed41b93)

This is an automated email from the ASF dual-hosted git repository.

rob pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git.


    from 94ef4a6  Fix stale delivery services being served in /publish/CrStates
     new 43334c7  Small CRUDer Refactor
     new 9ddca88  Revert "Small CRUDer Refactor"
     new a3567f2  Allow CRUDer interfaces to be used with single C R U D operations
     new e12c1f5  Fixed unit tests
     new cd19eb3  Added change to show the full CRUDer does not need to be implemented to work
     new 2ffe01c  Removed extraneous comments
     new d33f182  Rename APIInformer to APIInfoImpl
     new b7a6cbc  Rename variable, rename file, move APIInfoImpl to api.go
     new ed41b93  Fixed some merge conflicts

The 9969 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 traffic_ops/traffic_ops_golang/api/api.go          |  15 +-
 .../traffic_ops_golang/api/change_log_test.go      |   8 +-
 .../api/{crud.go => generic_crud.go}               |   0
 .../traffic_ops_golang/api/shared_handlers.go      |  81 +++----
 .../traffic_ops_golang/api/shared_handlers_test.go |  32 ++-
 .../traffic_ops_golang/api/shared_interfaces.go    |  52 +++--
 traffic_ops/traffic_ops_golang/apitenant/tenant.go |  10 +-
 traffic_ops/traffic_ops_golang/asn/asns.go         |  15 +-
 traffic_ops/traffic_ops_golang/asn/asns_test.go    |  15 +-
 .../traffic_ops_golang/cachegroup/cachegroups.go   |   9 +-
 .../cachegroup/cachegroups_test.go                 |  58 +++--
 traffic_ops/traffic_ops_golang/cdn/cdns.go         |  10 +-
 traffic_ops/traffic_ops_golang/cdn/cdns_test.go    |   8 +-
 .../cdnfederation/cdnfederations.go                |  10 +-
 .../traffic_ops_golang/coordinate/coordinates.go   |  10 +-
 .../coordinate/coordinates_test.go                 |   8 +-
 .../deliveryservice/deliveryservicesv12.go         |  10 +-
 .../deliveryservice/deliveryservicesv13.go         |  14 +-
 .../deliveryservice/request/comment/comments.go    |  10 +-
 .../deliveryservice/request/requests.go            |  28 +--
 .../deliveryservice/servers/servers.go             |  21 +-
 .../traffic_ops_golang/division/divisions.go       |  10 +-
 .../traffic_ops_golang/division/divisions_test.go  |   8 +-
 traffic_ops/traffic_ops_golang/origin/origins.go   |   9 +-
 .../traffic_ops_golang/parameter/parameters.go     |  10 +-
 .../parameter/parameters_test.go                   |  14 +-
 .../physlocation/phys_locations.go                 |  10 +-
 .../physlocation/phys_locations_test.go            |   8 +-
 traffic_ops/traffic_ops_golang/profile/profiles.go |  10 +-
 .../traffic_ops_golang/profile/profiles_test.go    |   9 +-
 .../profileparameter/profile_parameters.go         |  10 +-
 .../profileparameter/profile_parameters_test.go    |   8 +-
 traffic_ops/traffic_ops_golang/region/regions.go   |  10 +-
 .../traffic_ops_golang/region/regions_test.go      |   8 +-
 traffic_ops/traffic_ops_golang/role/roles.go       |   9 +-
 traffic_ops/traffic_ops_golang/role/roles_test.go  |  14 +-
 traffic_ops/traffic_ops_golang/routes.go           | 250 ++++++++++-----------
 traffic_ops/traffic_ops_golang/server/servers.go   |  10 +-
 .../staticdnsentry/staticdnsentry.go               |  10 +-
 .../staticdnsentry/staticdnsentry_test.go          |   2 +-
 traffic_ops/traffic_ops_golang/status/statuses.go  |  10 +-
 .../traffic_ops_golang/status/statuses_test.go     |   8 +-
 .../steeringtargets/steeringtargets.go             |   6 +-
 traffic_ops/traffic_ops_golang/types/types.go      |  10 +-
 traffic_ops/traffic_ops_golang/types/types_test.go |   9 +-
 traffic_ops/traffic_ops_golang/user/user.go        |  18 +-
 46 files changed, 392 insertions(+), 512 deletions(-)
 rename traffic_ops/traffic_ops_golang/api/{crud.go => generic_crud.go} (100%)