jagan-parthiban opened a new issue, #7496:
URL: https://github.com/apache/trafficcontrol/issues/7496

   ## 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:
   Types Using Deprecated TimeNoMod & TimeLayout
   ```
   curl --request GET \
     --url 'https://localhost:8443/api/4.1/types?name=Example01'
   
   
   {
        "response": [
                {
                        "id": 239,
                        "lastUpdated": "2023-05-08 20:07:55+05",
                        "name": "Example01",
                        "description": "Example",
                        "useInTable": "server"
                }
        ]
   }
   ```
   
   ## Expected behavior:
   Types  to Use RFC3339 Format
   ```
   curl --request GET \
     --url 'https://localhost:8443/api/5.0/types?name=Example01'
   
   
   {
        "response": [
                {
                        "id": 239,
                        "lastUpdated": "2023-04-26T08:36:20.413096+05:30",
                        "name": "Example01",
                        "description": "Example",
                        "useInTable": "server"
                }
        ]
   }
   ```
   
   ## 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: issues-unsubscr...@trafficcontrol.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to