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

Update tag.go to accept a context.Context #300

Merged
merged 1 commit into from Mar 19, 2021
Merged

Update tag.go to accept a context.Context #300

merged 1 commit into from Mar 19, 2021

Conversation

theckman
Copy link
Collaborator

Updates #267

@theckman theckman added this to the v1.4.0 milestone Feb 27, 2021
}

// CreateTag creates a new tag.
// ListTagsPaginated lists tags on your PagerDuty account, optionally filtered by a search query.
func (c *Client) ListTagsPaginated(ctx context.Context, o ListTagOptions) ([]*Tag, error) {
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@stmcallister similar question here as on #297, inspired by #295, as to whether we're okay with this naming convention going forward.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now that I'm looking at this naming convention for the third time I'm starting to question it. 😬 Wouldn't it make more sense to call these something like ListAllTags or ListTagsAll because they're gathering up all the pages and presenting a big list? Sorry for not thinking about this earlier.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@stmcallister I debated this myself for a day or two, and there were a few reasons I ultimately leaned this way:

  1. It creates a consistent prefix in the name of the method, which should put them near each other in documentation. Helps with discovery.
  2. Similar to the above, I found it easier to read <Action><Entity>[<Modifier>] over <Action>[<Modifier>]<Entity>. The optional modifier is at the end and not in the middle.
  3. I want to explore Methods with implicit pagination should accept an include function #296 as part of v2 as a way for consumers to filter the paginated values, which would make the name All not very relevant. It is a 2.0 change so we could rename, but I was thinking less breaking changes the better.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, okay. Your logic makes sense. Let's stick with the ListTagsPaginated convention. 👍

Copy link
Contributor

@stmcallister stmcallister left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good stuff!

@stmcallister stmcallister merged commit 680c2f0 into master Mar 19, 2021
@stmcallister stmcallister deleted the ctx_tag branch March 19, 2021 00:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants