Skip to content
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

[TEST]test e2e v4.1.2 #449

Open
wants to merge 1 commit into
base: v4.1.2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/nsx/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func GetClient(cf *config.NSXOperatorConfig) *Client {
// So, it's unnecessary to exit even if failed in the first time
if !nsxClient.NSXCheckVersion(SecurityPolicy) {
err := errors.New("SecurityPolicy feature support check failed")
log.Error(err, "initial NSX version check for SecurityPolicy got error")
log.Error(err, "Initial NSX version check for SecurityPolicy got error")
}
if !nsxClient.NSXCheckVersion(ServiceAccount) {
err := errors.New("NSXServiceAccount feature support check failed")
Expand Down
2 changes: 1 addition & 1 deletion pkg/nsx/services/securitypolicy/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func (service *SecurityPolicyService) buildSecurityPolicy(obj *v1alpha1.Security
return false
}

log.V(1).Info("building the model SecurityPolicy from CR SecurityPolicy", "object", *obj)
log.V(1).Info("Building the model SecurityPolicy from CR SecurityPolicy", "object", *obj)
nsxSecurityPolicy := &model.SecurityPolicy{}

nsxSecurityPolicy.Id = String(fmt.Sprintf("sp_%s", obj.UID))
Expand Down
Loading