Fixing Logging integration tests#2860
Merged
garrettjonesgoogle merged 3 commits intogoogleapis:masterfrom Feb 6, 2018
Merged
Conversation
pongad
reviewed
Feb 5, 2018
| Thread.sleep(1000); | ||
| deleted = logging().deleteLog(logId); | ||
| } | ||
| assertTrue(deleted); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Contributor
Author
|
It turns out the high quota usage was calls to ListLogMetrics and ListMonitoredResourceDescriptors. I fixed the first by clearing out the metrics in the Cloud Console. I fixed the second by bumping the page size from 1 to 100. The rate limiter is basically not necessary, so I removed it. I am retaining the retry on deletion, since that is regularly needed when I run the test locally. PTAL |
pongad
approved these changes
Feb 6, 2018
chingor13
pushed a commit
that referenced
this pull request
Feb 20, 2026
#2860) * chore: Update generation configuration at Tue Feb 11 02:24:11 UTC 2025 * chore: generate libraries at Tue Feb 11 02:24:47 UTC 2025
chingor13
pushed a commit
that referenced
this pull request
Mar 24, 2026
Statements that were executed using the Connection API and that were not found in the statement cache (that is; it was the first time it was executed), would not use the default query options that had been set for the connection. This would mean that for example an optimizer version that had been set for the connection would not be used the first time a given query string would be executed using a connection. All subsequent executions of the statement would use specified optimizer version. This change ensures that both the first and all following executions of the statement use the default query options that have been set.
chingor13
pushed a commit
that referenced
this pull request
Mar 30, 2026
…ocker tag to v0.51.0 (#2860)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #2835