-
Notifications
You must be signed in to change notification settings - Fork 456
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
dont clear tenant if empty #1630
Conversation
@@ -734,7 +734,10 @@ func (c *Controller) syncHandler(key string) error { | |||
} | |||
|
|||
// Check if we are decommissioning a pool before we ensure defaults, as that would populate a defaulted pool name | |||
tenant, err = c.checkForPoolDecommission(ctx, key, tenant, tenantConfiguration) | |||
temporal_tenant, err := c.checkForPoolDecommission(ctx, key, tenant, tenantConfiguration) |
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.
No _ underscore naming allowed in Go.
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.
This still won't solve the problem for the future. The function here incorrectly returns nil, nil
I believe the correct fix is #1625
it seems like |
@@ -734,7 +734,10 @@ func (c *Controller) syncHandler(key string) error { | |||
} | |||
|
|||
// Check if we are decommissioning a pool before we ensure defaults, as that would populate a defaulted pool name | |||
tenant, err = c.checkForPoolDecommission(ctx, key, tenant, tenantConfiguration) | |||
temporal_tenant, err := c.checkForPoolDecommission(ctx, key, tenant, tenantConfiguration) |
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.
This still won't solve the problem for the future. The function here incorrectly returns nil, nil
I believe the correct fix is #1625
Closed in favor of #1625 |
Objective:
To solve Panic:
Explanation:
This line below clears the tenant leading to a panic when calling other functions below: