You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by ra...@apache.org on 2022/04/07 22:10:36 UTC

[trafficcontrol] branch master updated (96a1e0192c -> bf47303484)

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

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


    from 96a1e0192c Fix t3c cookie issue when user changes (#6725)
     add bf47303484 T3C Race Condition Update (#6569)

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.md                                       |   1 +
 cache-config/t3c-apply/torequest/cmd.go            |  26 +-
 cache-config/t3c-apply/torequest/torequest.go      |  23 +-
 cache-config/t3c-update/README.md                  |  26 +-
 cache-config/t3c-update/config/config.go           |  82 +++-
 cache-config/t3c-update/t3c-update.go              |  19 +-
 cache-config/t3cutil/getdata.go                    |  18 +-
 cache-config/t3cutil/toreq/clientfuncs.go          |  56 ++-
 cache-config/t3cutil/toreq/conversions.go          |  47 ++
 cache-config/t3cutil/toreq/toreqold/clientfuncs.go |  10 +-
 cache-config/t3cutil/toreq/toreqold/conversions.go |   5 +
 .../testing/ort-tests/t3c-apply-diff_test.go       |  10 +-
 .../ort-tests/t3c-apply-unset-update_test.go       |  11 +-
 .../ort-tests/t3c-apply-wait-for-parents_test.go   |  40 +-
 cache-config/testing/ort-tests/t3c-reload_test.go  |  29 +-
 cache-config/testing/ort-tests/t3c_mode_test.go    |   4 +-
 .../testing/ort-tests/t3c_update_to_flags_test.go  |  28 +-
 cache-config/testing/ort-tests/tc-fixtures.json    |   4 +-
 .../testing/ort-tests/tcdata/invalidation_jobs.go  |  47 ++
 cache-config/testing/ort-tests/tcdata/servers.go   |  26 ++
 cache-config/testing/ort-tests/tcdata/session.go   |   2 +-
 cache-config/testing/ort-tests/tcdata/tcdata.go    |   2 +-
 .../testing/ort-tests/tcdata/topologies.go         |   1 -
 cache-config/testing/ort-tests/tcdata/withobjs.go  |   2 +
 .../testing/ort-tests/to_requester_test.go         |   3 +-
 cache-config/testing/ort-tests/to_updater_test.go  |  78 +++-
 .../testing/ort-tests/traffic_ops_ort_test.go      |   7 +-
 docs/source/api/v2/servers.rst                     |  34 +-
 docs/source/api/v2/servers_id.rst                  |  16 +-
 docs/source/api/v3/servers.rst                     |  20 +-
 docs/source/api/v3/servers_hostname_update.rst     |  20 +-
 docs/source/api/v3/servers_id.rst                  |  20 +-
 docs/source/api/v4/servers.rst                     | 101 +++--
 docs/source/api/v4/servers_hostname_update.rst     |  24 +-
 .../api/v4/servers_hostname_update_status.rst      |  10 +-
 docs/source/api/v4/servers_id.rst                  |  97 +++--
 lib/go-atscfg/atscfg.go                            |  22 +-
 lib/go-tc/cachegroups.go                           |   4 +-
 lib/go-tc/servers.go                               |  64 ++-
 ...2022021523082100_server_config_update.down.sql} |  15 +-
 ...> 2022021523082100_server_config_update.up.sql} |  23 +-
 traffic_ops/testing/api/v4/servers_test.go         |   3 -
 .../testing/api/v4/serverupdatestatus_test.go      |  76 ++--
 traffic_ops/testing/api/v4/tc-fixtures.json        | 404 +++++++++++++++++
 .../traffic_ops_golang/cachegroup/queueupdate.go   |  72 ++--
 traffic_ops/traffic_ops_golang/cdn/queue.go        |  29 +-
 .../traffic_ops_golang/dbhelpers/db_helpers.go     | 223 +++++++++-
 .../traffic_ops_golang/deliveryservice/eligible.go |   4 +-
 .../deliveryservice/servers/delete.go              |   2 +-
 .../deliveryservice/servers/servers.go             |   2 +-
 .../invalidationjobs/invalidationjobs.go           |  51 +--
 traffic_ops/traffic_ops_golang/origin/origins.go   |   1 -
 traffic_ops/traffic_ops_golang/routing/routes.go   |   2 +-
 .../traffic_ops_golang/server/put_status.go        |   6 +-
 .../traffic_ops_golang/server/queue_update.go      |  34 +-
 traffic_ops/traffic_ops_golang/server/servers.go   | 478 ++++++++++-----------
 .../server/servers_server_capability.go            |   2 +-
 .../traffic_ops_golang/server/servers_test.go      |   5 +
 .../server/servers_update_status.go                |  47 +-
 .../server/servers_update_status_test.go           |   9 +-
 traffic_ops/traffic_ops_golang/server/update.go    | 275 ++++++++++--
 .../traffic_ops_golang/servercheck/servercheck.go  |  16 +-
 .../traffic_ops_golang/topology/queue_update.go    |  31 +-
 traffic_ops/v2-client/server_update_status.go      |   2 +-
 traffic_ops/v3-client/server_update_status.go      |   2 +-
 traffic_ops/v4-client/server_update_status.go      |  34 +-
 66 files changed, 2084 insertions(+), 803 deletions(-)
 create mode 100644 cache-config/testing/ort-tests/tcdata/invalidation_jobs.go
 copy traffic_ops/app/db/migrations/{00000000000000_init.down.sql => 2022021523082100_server_config_update.down.sql} (65%)
 copy traffic_ops/app/db/migrations/{2021110210014200_roles_and_permissions.up.sql => 2022021523082100_server_config_update.up.sql} (57%)