Skip to content

Commit

Permalink
Updated TP field names based on TO changes from ATC PRs apache#7806, a…
Browse files Browse the repository at this point in the history
…pache#7718 (apache#49)

* Updated TP field names based on TO changes from PRs apache#7806, apache#7718,

* Updated TP field name (cdn) in server capability and updated changelog
  • Loading branch information
rimashah25 authored Nov 3, 2023
1 parent 79f75b5 commit 3ce93f2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [unreleased]
### Added
- [#7812](https://github.com/apache/trafficcontrol/pull/7812) *Traffic Portal*: Expose the `configUpdateFailed` and `revalUpdateFailed` fields on the server table.
- [#31](https://github.com/comcast-cdn/trafficcontrol/pull/31) *Documentation*: add further instructions for proper slice plugin usage regarding cachekey
- [#36](https://github.com/comcast-cdn/trafficcontrol/pull/36) *Traffic Ops, Traffic Portal*: Allow users to add SANs to ACME Cert Generation.
- [#7812](https://github.com/apache/trafficcontrol/pull/7812) *Traffic Portal* Expose the `configUpdateFailed` and `revalUpdateFailed` fields on the server table.
- [#31](https://github.com/comcast-cdn/trafficcontrol/pull/31) *Documentation* add further instructions for proper slice plugin usage regarding cachekey
- [#36](https://github.com/comcast-cdn/trafficcontrol/pull/36) *Traffic Ops, Traffic Portal* Allow users to add SANs to ACME Cert Generation.
- [#43](https://github.com/comcast-cdn/trafficcontrol/pull/43) *t3c* added command line argument to force fallback to previous supported TO API.

### Changed
Expand All @@ -19,6 +19,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- [#28](https://github.com/comcast-cdn/trafficcontrol/pull/28) *Traffic Router* Fixed the case where randomized case queries against TR would not respect the ECS setting.
- [#41](https://github.com/comcast-cdn/trafficcontrol/pull/41) *Traffic Ops, Traffic Portal* Fixed the case where TO was failing to assign delivery services to a server, due to a bug in the way the list of preexisting delivery services was being returned.
- [#46](https://github.com/comcast-cdn/trafficcontrol/pull/46) *Traffic Ops, Traffic Portal* Fixed broken capability links for delivery service and added required capability as a column in DS table.
- [#49](https://github.com/comcast-cdn/trafficcontrol/pull/49) *Traffic Portal* Fixed TP field names based on TO struct changes.

## [8.0.0] - 2023-09-20
### Added
- [#7672](https://github.com/apache/trafficcontrol/pull/7672) *Traffic Control Health Client*: Added peer monitor flag while using `strategies.yaml`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<td data-search="^{{::fed.cname}}$">{{::fed.cname}}</td>
<td data-search="^{{::fed.ttl}}$">{{::fed.ttl}}</td>
<td data-search="^{{::fed.description}}$">{{::fed.description}}</td>
<td data-search="^{{::fed.deliveryService.xmlId}}$">{{::fed.deliveryService.xmlId}}</td>
<td data-search="^{{::fed.deliveryService.xmlID}}$">{{::fed.deliveryService.xmlID}}</td>
</tr>
</tbody>
</table>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var TableAssignServersPerCapabilityController = function(servers, serverCapabili
},
{
headerName: "CDN",
field: "cdnName",
field: "cdn",
hide: false
}
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ <h3 class="modal-title">Servers assigned to {{::cacheGroupName}}</h3>
<tr ng-repeat="s in ::cacheGroupServers">
<td data-search="^{{::s.hostName}}$">{{::s.hostName}}</td>
<td data-search="^{{::s.domainName}}$">{{::s.domainName}}</td>
<td data-search="^{{::s.cdnName}}$">{{::s.cdnName}}</td>
<td data-search="^{{::s.cdn}}$">{{::s.cdn}}</td>
<td data-search="^{{::s.status}}$">{{::s.status}}</td>
</tr>
</tbody>
Expand Down

0 comments on commit 3ce93f2

Please sign in to comment.