We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Several cases of this:
apstra-go-sdk/apstra/freeform_config_templates.go
Line 102 in 81dcc81
err: fmt.Errorf("multiple Config Templates in blueprint %q have name %q", o.client.id, name),
should be:
err: fmt.Errorf("multiple Config Templates in blueprint %q have name %q", o.id, name),
o in this case is a freeform client, so o.id is the freeform blueprint id and o.client.id is the client id.
o
o.id
o.client.id
Need to find all of the cases of this mistake (suspect many)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Several cases of this:
apstra-go-sdk/apstra/freeform_config_templates.go
Line 102 in 81dcc81
should be:
o
in this case is a freeform client, soo.id
is the freeform blueprint id ando.client.id
is the client id.Need to find all of the cases of this mistake (suspect many)
The text was updated successfully, but these errors were encountered: