jagan-parthiban opened a new issue, #7465: URL: https://github.com/apache/trafficcontrol/issues/7465
## Parent Issue: https://github.com/apache/trafficcontrol/issues/5911 Breaking down the parent issue https://github.com/apache/trafficcontrol/issues/5911 in smaller issues to raise separate, reviewable PRs for each of the services. ## Traffic Control components affected: - Traffic Ops - Documentation ## Current behavior: Server Capabilities Using Deprecated TimeNoMod & TimeLayout ``` curl --request GET \ --url 'https://localhost:8443/api/4.1/server_capabilities?name=RAM1' { "response": [ { "name": "RAM1", "lastUpdated": "2023-04-26 08:24:24+05", "description": "ram server capability" } ] } ``` ## Expected behavior: Server Capabilities to Use RFC3339 Format ``` curl --request GET \ --url 'https://localhost:8443/api/4.1/server_capabilities?name=RAM1' { "response": [ { "name": "RAM1", "lastUpdated": "2023-04-26T08:36:20.413096+05:30", "description": "ram server capability" } ] } ``` ## Steps to reproduce: Make the above api call to 4.1 version -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
