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

Only log pkg.Load after checking whether the operation is tagged #655

Merged
merged 1 commit into from
Oct 13, 2023

Conversation

mgyucht
Copy link
Contributor

@mgyucht mgyucht commented Oct 13, 2023

Changes

Small bugfix for the OpenAPI generator logging. The generator calls the Load method once per tag. That method iterates through all endpoints, skipping over the endpoints that are not tagged with the provided tag. Logging was done before checking this though, producing many extraneous logs.

Tests

Ran the generator against the CLI, producing far less noisy output.

@mgyucht mgyucht requested a review from tanmay-db October 13, 2023 07:57
@codecov-commenter
Copy link

codecov-commenter commented Oct 13, 2023

Codecov Report

All modified lines are covered by tests ✅

Files Coverage Δ
openapi/code/package.go 58.20% <100.00%> (ø)

📢 Thoughts on this report? Let us know!.

@tanmay-db tanmay-db added this pull request to the merge queue Oct 13, 2023
Merged via the queue into main with commit 16be5e2 Oct 13, 2023
4 checks passed
@tanmay-db tanmay-db deleted the less-noisy-logging branch October 13, 2023 12:02
mgyucht added a commit that referenced this pull request Oct 23, 2023
* Implemented Iterator support for paginated endpoints or endpoints returning a list ([#543](#543)). The Iterator interface allows users to get the next resource in the iterator and to check whether another resource is available in the iterator. Iterators for paginated endpoints fetch pages lazily, allowing users to only fetch the pages needed for their use case.
* Removed `photon` and `graviton` selectors in `compute.SparkVersionRequ…` ([#622](#622)). Going forward, photon is determined by the `RuntimeEngine` field in `compute.CreateCluster`, and graviton is chosen depending on the `aws_instance_type` field in `compute.CreateCluster`.

API Changes:

 * Added `Attributes`, `Count`, `ExcludedAttributes`, `Filter`, `SortBy`, `SortOrder`, and `StartIndex` fields to [iam.GetAccountUserRequest](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#GetAccountUserRequest) and [iam.GetUserRequest](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#GetUserRequest).
 * Added `Schemas` field to [iam.Group](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#Group), [iam.ListGroupsResponse](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#ListGroupsResponse), [iam.ListServicePrincipalResponse](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#ListServicePrincipalResponse), [iam.ListUsersResponse](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#ListUsersResponse), [iam.ServicePrincipal](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#ServicePrincipal), and [iam.User](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#User).
 * Added [iam.GetSortOrder](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#GetSortOrder).
 * Added [iam.GroupSchema](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#GroupSchema).
 * Added [iam.ListResponseSchema](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#ListResponseSchema).
 * Added [iam.ServicePrincipalSchema](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#ServicePrincipalSchema).
 * Added [iam.UserSchema](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#UserSchema).
 * Added `WebhookNotifications` field for [jobs.SubmitTask](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/jobs#SubmitTask).
 * Added [w.Apps](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/serving#AppsAPI) workspace-level service and related methods.
 * Added [a.AccountNetworkPolicy](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/settings#AccountNetworkPolicyAPI) account-level service and related methods.

Internal SDK Changes:
* Update to actions/checkout@v4 ([#650](#650)).
* Skip unshallow step in test workflow ([#649](#649)).
* Add integration tests for `Jobs`: `ListRuns` ([#645](#645)).
* Only log pkg.Load after checking whether the operation is tagged ([#655](#655)).
* Prefix library paths with the target directory to construct absolute paths ([#656](#656)).
* Fixed HasRequiredNonBodyField method ([#660](#660)).
* Added CanSetRequiredFieldsFromJson method for OpenAPI generator ([#661](#661)).
* Add integration tests for `ServicePrincipals`: `Patch` ([#662](#662)).
* Add integration tests for `Users`: `Patch`, `Update` ([#663](#663)).
* Enforce running `az login --service-principal` on nightly runs ([#659](#659)).
* Add integration tests for `Connections`: `Create`, `Delete`, `Get`, `List`, `Update` ([#653](#653)).

OpenAPI SHA: 5903bb39137fd76ac384b2044e425f9c56840e00, Date: 2023-10-23
@mgyucht mgyucht mentioned this pull request Oct 23, 2023
github-merge-queue bot pushed a commit that referenced this pull request Oct 24, 2023
* Implemented Iterator support for paginated endpoints or endpoints
returning a list
([#543](#543)). The
Iterator interface allows users to get the next resource in the iterator
and to check whether another resource is available in the iterator.
Iterators for paginated endpoints fetch pages lazily, allowing users to
only fetch the pages needed for their use case.
* Removed `photon` and `graviton` selectors in
`compute.SparkVersionRequ…`
([#622](#622)).
Going forward, photon is determined by the `RuntimeEngine` field in
`compute.CreateCluster`, and graviton is chosen depending on the
`aws_instance_type` field in `compute.CreateCluster`.

API Changes:

* Added `Attributes`, `Count`, `ExcludedAttributes`, `Filter`, `SortBy`,
`SortOrder`, and `StartIndex` fields to
[iam.GetAccountUserRequest](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#GetAccountUserRequest)
and
[iam.GetUserRequest](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#GetUserRequest).
* Added `Schemas` field to
[iam.Group](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#Group),
[iam.ListGroupsResponse](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#ListGroupsResponse),
[iam.ListServicePrincipalResponse](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#ListServicePrincipalResponse),
[iam.ListUsersResponse](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#ListUsersResponse),
[iam.ServicePrincipal](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#ServicePrincipal),
and
[iam.User](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#User).
* Added
[iam.GetSortOrder](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#GetSortOrder).
* Added
[iam.GroupSchema](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#GroupSchema).
* Added
[iam.ListResponseSchema](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#ListResponseSchema).
* Added
[iam.ServicePrincipalSchema](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#ServicePrincipalSchema).
* Added
[iam.UserSchema](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/iam#UserSchema).
* Added `WebhookNotifications` field for
[jobs.SubmitTask](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/jobs#SubmitTask).
* Added
[w.Apps](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/serving#AppsAPI)
workspace-level service and related methods.
* Added
[a.AccountNetworkPolicy](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/settings#AccountNetworkPolicyAPI)
account-level service and related methods.

Internal SDK Changes:
* Update to actions/checkout@v4
([#650](#650)).
* Skip unshallow step in test workflow
([#649](#649)).
* Add integration tests for `Jobs`: `ListRuns`
([#645](#645)).
* Only log pkg.Load after checking whether the operation is tagged
([#655](#655)).
* Prefix library paths with the target directory to construct absolute
paths
([#656](#656)).
* Fixed HasRequiredNonBodyField method
([#660](#660)).
* Added CanSetRequiredFieldsFromJson method for OpenAPI generator
([#661](#661)).
* Add integration tests for `ServicePrincipals`: `Patch`
([#662](#662)).
* Add integration tests for `Users`: `Patch`, `Update`
([#663](#663)).
* Enforce running `az login --service-principal` on nightly runs
([#659](#659)).
* Add integration tests for `Connections`: `Create`, `Delete`, `Get`,
`List`, `Update`
([#653](#653)).

OpenAPI SHA: 5903bb39137fd76ac384b2044e425f9c56840e00, Date: 2023-10-23
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.

3 participants