-
Notifications
You must be signed in to change notification settings - Fork 261
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Choreo] Fix intelligent routing availability after deleting and re-creating an API #3506
[Choreo] Fix intelligent routing availability after deleting and re-creating an API #3506
Conversation
@@ -36,34 +36,14 @@ func GetVersionMatchRegex(version string) string { | |||
func GetMajorMinorVersionRangeRegex(semVersion semantic_version.SemVersion) string { | |||
majorVersion := strconv.Itoa(semVersion.Major) | |||
minorVersion := strconv.Itoa(semVersion.Minor) | |||
if semVersion.Patch == nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shall we remove Patch property from the struct as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done with: f7728c1
[succeeded] : dev-deployment-v2 : 20240510.15 |
[succeeded] Controlplane cluster : dev-deployment-v2 : 20240510.15 |
[succeeded] Dataplane(EastUS) cluster : dev-deployment-v2 : 20240510.15 |
[succeeded] Dataplane(NorthEU) cluster : dev-deployment-v2 : 20240510.15 |
[failed] Dataplane(EastUS) cluster : stage-deployment-v2 : 20240513.3 |
[failed] Controlplane cluster : stage-deployment-v2 : 20240513.3 |
[failed] Dataplane(NorthEU) cluster : stage-deployment-v2 : 20240513.4 |
[failed] Dataplane(CDP2-WU2) cluster : stage-deployment-v2 : 20240513.4 |
[failed] Dataplane(EastUS) cluster : stage-deployment-v2 : 20240513.4 |
[failed] Dataplane(CDP2-WU2) cluster : stage-deployment-v2 : 20240513.5 |
[failed] Dataplane(EastUS) cluster : stage-deployment-v2 : 20240513.5 |
[] Dataplane(NorthEU) cluster : stage-deployment-v2 : 20240513.6 |
[] Controlplane cluster : stage-deployment-v2 : 20240513.6 |
[] Dataplane(CDP2-WU2) cluster : prod-deployment-v2 : 20240515.2 |
1 similar comment
[] Dataplane(CDP2-WU2) cluster : prod-deployment-v2 : 20240515.2 |
[] Dataplane(EastUS) cluster : prod-deployment-v2 : 20240515.2 |
1 similar comment
[] Dataplane(EastUS) cluster : prod-deployment-v2 : 20240515.2 |
[] Controlplane cluster : prod-deployment-v2 : 20240515.2 |
[] Controlplane cluster : prod-deployment-v2 : 20240515.2 |
[] Dataplane(NorthEU) cluster : prod-deployment-v2 : 20240515.2 |
1 similar comment
[] Dataplane(NorthEU) cluster : prod-deployment-v2 : 20240515.2 |
Purpose
This PR,
Issues
Addresses: https://github.com/wso2-enterprise/choreo/issues/28419
Automation tests
Tested environments
OS: ubuntu
Go: 1.22
Maintainers: Check before merge