Skip to content

Commit

Permalink
Fix type in fetchAgentPoolID function name
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastian Rivera <sebastian.rivera@hashicorp.com>
  • Loading branch information
JarrettSpiker and sebasslash authored Aug 2, 2022
1 parent e03a0ca commit d3ddfa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tfe/agent_pool_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
tfe "github.com/hashicorp/go-tfe"
)

func fetchtAgentPoolID(orgName string, poolName string, client *tfe.Client) (string, error) {
func fetchAgentPoolID(orgName string, poolName string, client *tfe.Client) (string, error) {
// to reduce the number of pages returned, search based on the name. TFE instances which
// do not support agent pool search will just ignore the query parameter
options := tfe.AgentPoolListOptions{
Expand Down

0 comments on commit d3ddfa1

Please sign in to comment.