rawlinp opened a new issue #3543: TP API can only support up to API minor version ".9" URL: https://github.com/apache/trafficcontrol/issues/3543 Because the API version is treated as a float under the hood, I believe we will run into issues once we reach API minor version 1.10, because `1.1 == 1.10`. The underlying implementation should model API versions as a struct of two unsigned integers: ``` type APIVersion struct { major uint minor uint } ``` This would have to be refactored before we could possibly support TO API minor version 1.9. We are currently at 1.4, so I believe we have about 5 releases until this will need to be addressed.
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
