Uh oh!
There was an error while loading. Please reload this page.
Wait even longer for orphan's topic to be None. - #2106
Merged
Conversation
tseaver
commented
Aug 16, 2016
ContributorAuthor
@daspecster, @dhermes I plan to merge this one-digit diff as soon as Travis is green, trying to get the build passing w/ both system test runs. |
daspecster
commented
Aug 16, 2016
Contributor
Instead of 8 tries would it work better to increase the wait time/delay? I'm just thinking of quotas but we probably have a really high quota for this. |
daspecster
commented
Aug 16, 2016
Contributor
Either way LGTM if it works for master! 🎉 |
tseaver
commented
Aug 16, 2016
ContributorAuthor
@daspecster We aren't seeing quota-based failures: it just takes longer than expected for the deletion of the topic to show up when reloading the orphaned subscription. |
dhermes
commented
Aug 16, 2016
Contributor
LGTM as well |
Merged
parthea pushed a commit
that referenced
this pull request
Apr 1, 2026
* feat: implement Index.to_list() This commit implements the `Index.to_list()` method, which is an alias for `tolist()`. This new method provides a way to convert a BigQuery DataFrames Index to a Python list, similar to the existing `Series.to_list()` method. The implementation follows the pattern of other methods in the library by first converting the Index to a pandas Index using `to_pandas()` and then calling the corresponding `.to_list()` method. A unit test has been added to verify the functionality of the new method. * Update bigframes/core/indexes/base.py * Update tests/unit/test_index.py --------- Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
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 freeto 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.
Toward #2080.