René's URL Explorer Experiment


Title: tests.system.test_table_api: test_db_list_tables_reload failed · Issue #515 · googleapis/python-spanner · GitHub

Open Graph Title: tests.system.test_table_api: test_db_list_tables_reload failed · Issue #515 · googleapis/python-spanner

X Title: tests.system.test_table_api: test_db_list_tables_reload failed · Issue #515 · googleapis/python-spanner

Description: This test failed! To configure my behavior, see the Flaky Bot documentation. If I'm commenting on this issue too often, add the flakybot: quiet label and I will stop commenting. commit: bdd5f8b buildURL: Build Status, Sponge status: fail...

Open Graph Description: This test failed! To configure my behavior, see the Flaky Bot documentation. If I'm commenting on this issue too often, add the flakybot: quiet label and I will stop commenting. commit: bdd5f8b bui...

X Description: This test failed! To configure my behavior, see the Flaky Bot documentation. If I'm commenting on this issue too often, add the flakybot: quiet label and I will stop commenting. commit: bdd5f8b...

Opengraph URL: https://github.com/googleapis/python-spanner/issues/515

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"tests.system.test_table_api: test_db_list_tables_reload failed","articleBody":"This test failed!\n\nTo configure my behavior, see [the Flaky Bot documentation](https://github.com/googleapis/repo-automation-bots/tree/main/packages/flakybot).\n\nIf I'm commenting on this issue too often, add the `flakybot: quiet` label and\nI will stop commenting.\n\n---\n\ncommit: bdd5f8b201d1b442837d4fca1d631fe171e276b9\nbuildURL: [Build Status](https://source.cloud.google.com/results/invocations/dee9f019-ea44-420a-8fc8-e42e0e5755b9), [Sponge](http://sponge2/dee9f019-ea44-420a-8fc8-e42e0e5755b9)\nstatus: failed\n\u003cdetails\u003e\u003csummary\u003eTest output\u003c/summary\u003e\u003cbr\u003e\u003cpre\u003etarget = functools.partial(\u003cbound method PollingFuture._done_or_raise of \u003cgoogle.api_core.operation.Operation object at 0x7f6d811acaf0\u003e\u003e)\npredicate = \u003cfunction if_exception_type.\u003clocals\u003e.if_exception_type_predicate at 0x7f6d8182d3a0\u003e\nsleep_generator = \u003cgenerator object exponential_sleep_generator at 0x7f6d812e1510\u003e\ndeadline = 60, on_error = None\n\n    def retry_target(target, predicate, sleep_generator, deadline, on_error=None):\n        \"\"\"Call a function and retry if it fails.\n    \n        This is the lowest-level retry helper. Generally, you'll use the\n        higher-level retry helper :class:`Retry`.\n    \n        Args:\n            target(Callable): The function to call and retry. This must be a\n                nullary function - apply arguments with `functools.partial`.\n            predicate (Callable[Exception]): A callable used to determine if an\n                exception raised by the target should be considered retryable.\n                It should return True to retry or False otherwise.\n            sleep_generator (Iterable[float]): An infinite iterator that determines\n                how long to sleep between retries.\n            deadline (float): How long to keep retrying the target. The last sleep\n                period is shortened as necessary, so that the last retry runs at\n                ``deadline`` (and not considerably beyond it).\n            on_error (Callable[Exception]): A function to call while processing a\n                retryable exception.  Any error raised by this function will *not*\n                be caught.\n    \n        Returns:\n            Any: the return value of the target function.\n    \n        Raises:\n            google.api_core.RetryError: If the deadline is exceeded while retrying.\n            ValueError: If the sleep generator stops yielding values.\n            Exception: If the target raises a method that isn't retryable.\n        \"\"\"\n        if deadline is not None:\n            deadline_datetime = datetime_helpers.utcnow() + datetime.timedelta(\n                seconds=deadline\n            )\n        else:\n            deadline_datetime = None\n    \n        last_exc = None\n    \n        for sleep in sleep_generator:\n            try:\n\u003e               return target()\n\n.nox/system-3-8/lib/python3.8/site-packages/google/api_core/retry.py:189: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nself = \u003cgoogle.api_core.operation.Operation object at 0x7f6d811acaf0\u003e\nretry = \u003cgoogle.api_core.retry.Retry object at 0x7f6d81831430\u003e\n\n    def _done_or_raise(self, retry=DEFAULT_RETRY):\n        \"\"\"Check if the future is done and raise if it's not.\"\"\"\n        kwargs = {} if retry is DEFAULT_RETRY else {\"retry\": retry}\n    \n        if not self.done(**kwargs):\n\u003e           raise _OperationNotComplete()\nE           google.api_core.future.polling._OperationNotComplete\n\n.nox/system-3-8/lib/python3.8/site-packages/google/api_core/future/polling.py:87: _OperationNotComplete\n\nThe above exception was the direct cause of the following exception:\n\nself = \u003cgoogle.api_core.operation.Operation object at 0x7f6d811acaf0\u003e\ntimeout = 60, retry = \u003cgoogle.api_core.retry.Retry object at 0x7f6d81831430\u003e\n\n    def _blocking_poll(self, timeout=None, retry=DEFAULT_RETRY):\n        \"\"\"Poll and wait for the Future to be resolved.\n    \n        Args:\n            timeout (int):\n                How long (in seconds) to wait for the operation to complete.\n                If None, wait indefinitely.\n        \"\"\"\n        if self._result_set:\n            return\n    \n        retry_ = self._retry.with_deadline(timeout)\n    \n        try:\n            kwargs = {} if retry is DEFAULT_RETRY else {\"retry\": retry}\n\u003e           retry_(self._done_or_raise)(**kwargs)\n\n.nox/system-3-8/lib/python3.8/site-packages/google/api_core/future/polling.py:108: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nargs = (), kwargs = {}\ntarget = functools.partial(\u003cbound method PollingFuture._done_or_raise of \u003cgoogle.api_core.operation.Operation object at 0x7f6d811acaf0\u003e\u003e)\nsleep_generator = \u003cgenerator object exponential_sleep_generator at 0x7f6d812e1510\u003e\n\n    @general_helpers.wraps(func)\n    def retry_wrapped_func(*args, **kwargs):\n        \"\"\"A wrapper that calls target function with retry.\"\"\"\n        target = functools.partial(func, *args, **kwargs)\n        sleep_generator = exponential_sleep_generator(\n            self._initial, self._maximum, multiplier=self._multiplier\n        )\n\u003e       return retry_target(\n            target,\n            self._predicate,\n            sleep_generator,\n            self._deadline,\n            on_error=on_error,\n        )\n\n.nox/system-3-8/lib/python3.8/site-packages/google/api_core/retry.py:286: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\ntarget = functools.partial(\u003cbound method PollingFuture._done_or_raise of \u003cgoogle.api_core.operation.Operation object at 0x7f6d811acaf0\u003e\u003e)\npredicate = \u003cfunction if_exception_type.\u003clocals\u003e.if_exception_type_predicate at 0x7f6d8182d3a0\u003e\nsleep_generator = \u003cgenerator object exponential_sleep_generator at 0x7f6d812e1510\u003e\ndeadline = 60, on_error = None\n\n    def retry_target(target, predicate, sleep_generator, deadline, on_error=None):\n        \"\"\"Call a function and retry if it fails.\n    \n        This is the lowest-level retry helper. Generally, you'll use the\n        higher-level retry helper :class:`Retry`.\n    \n        Args:\n            target(Callable): The function to call and retry. This must be a\n                nullary function - apply arguments with `functools.partial`.\n            predicate (Callable[Exception]): A callable used to determine if an\n                exception raised by the target should be considered retryable.\n                It should return True to retry or False otherwise.\n            sleep_generator (Iterable[float]): An infinite iterator that determines\n                how long to sleep between retries.\n            deadline (float): How long to keep retrying the target. The last sleep\n                period is shortened as necessary, so that the last retry runs at\n                ``deadline`` (and not considerably beyond it).\n            on_error (Callable[Exception]): A function to call while processing a\n                retryable exception.  Any error raised by this function will *not*\n                be caught.\n    \n        Returns:\n            Any: the return value of the target function.\n    \n        Raises:\n            google.api_core.RetryError: If the deadline is exceeded while retrying.\n            ValueError: If the sleep generator stops yielding values.\n            Exception: If the target raises a method that isn't retryable.\n        \"\"\"\n        if deadline is not None:\n            deadline_datetime = datetime_helpers.utcnow() + datetime.timedelta(\n                seconds=deadline\n            )\n        else:\n            deadline_datetime = None\n    \n        last_exc = None\n    \n        for sleep in sleep_generator:\n            try:\n                return target()\n    \n            # pylint: disable=broad-except\n            # This function explicitly must deal with broad exceptions.\n            except Exception as exc:\n                if not predicate(exc):\n                    raise\n                last_exc = exc\n                if on_error is not None:\n                    on_error(exc)\n    \n            now = datetime_helpers.utcnow()\n    \n            if deadline_datetime is not None:\n                if deadline_datetime \u003c= now:\n\u003e                   six.raise_from(\n                        exceptions.RetryError(\n                            \"Deadline of {:.1f}s exceeded while calling {}\".format(\n                                deadline, target\n                            ),\n                            last_exc,\n                        ),\n                        last_exc,\n                    )\n\n.nox/system-3-8/lib/python3.8/site-packages/google/api_core/retry.py:204: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nvalue = None, from_value = _OperationNotComplete()\n\n\u003e   ???\nE   google.api_core.exceptions.RetryError: Deadline of 60.0s exceeded while calling functools.partial(\u003cbound method PollingFuture._done_or_raise of \u003cgoogle.api_core.operation.Operation object at 0x7f6d811acaf0\u003e\u003e), last exception:\n\n\u003cstring\u003e:3: RetryError\n\nDuring handling of the above exception, another exception occurred:\n\nspanner_client = \u003cgoogle.cloud.spanner_v1.client.Client object at 0x7f6d811926d0\u003e\noperation_timeout = 60, shared_instance_id = 'google-cloud-1628986419564'\ninstance_config = name: \"projects/precise-truck-742/instanceConfigs/regional-us-central1\"\ndisplay_name: \"us-central1\"\nreplicas {\n  locat...\nreplicas {\n  location: \"us-central1\"\n  type_: READ_WRITE\n}\nreplicas {\n  location: \"us-central1\"\n  type_: READ_WRITE\n}\n\nexisting_instances = [name: \"projects/precise-truck-742/instances/gcp-streaming-systests\"\nconfig: \"projects/precise-truck-742/instanceConfi...ated\"\n  value: \"1628986209\"\n}\nlabels {\n  key: \"python-spanner-systests\"\n  value: \"true\"\n}\nprocessing_units: 1000\n, ...]\n\n    @pytest.fixture(scope=\"session\")\n    def shared_instance(\n        spanner_client,\n        operation_timeout,\n        shared_instance_id,\n        instance_config,\n        existing_instances,  # evalutate before creating one\n    ):\n        _helpers.cleanup_old_instances(spanner_client)\n    \n        if _helpers.CREATE_INSTANCE:\n            create_time = str(int(time.time()))\n            labels = {\"python-spanner-systests\": \"true\", \"created\": create_time}\n    \n            instance = spanner_client.instance(\n                shared_instance_id, instance_config.name, labels=labels\n            )\n            created_op = _helpers.retry_429_503(instance.create)()\n\u003e           created_op.result(operation_timeout)  # block until completion\n\ntests/system/conftest.py:119: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n.nox/system-3-8/lib/python3.8/site-packages/google/api_core/future/polling.py:130: in result\n    self._blocking_poll(timeout=timeout, **kwargs)\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nself = \u003cgoogle.api_core.operation.Operation object at 0x7f6d811acaf0\u003e\ntimeout = 60, retry = \u003cgoogle.api_core.retry.Retry object at 0x7f6d81831430\u003e\n\n    def _blocking_poll(self, timeout=None, retry=DEFAULT_RETRY):\n        \"\"\"Poll and wait for the Future to be resolved.\n    \n        Args:\n            timeout (int):\n                How long (in seconds) to wait for the operation to complete.\n                If None, wait indefinitely.\n        \"\"\"\n        if self._result_set:\n            return\n    \n        retry_ = self._retry.with_deadline(timeout)\n    \n        try:\n            kwargs = {} if retry is DEFAULT_RETRY else {\"retry\": retry}\n            retry_(self._done_or_raise)(**kwargs)\n        except exceptions.RetryError:\n\u003e           raise concurrent.futures.TimeoutError(\n                \"Operation did not complete within the designated \" \"timeout.\"\n            )\nE           concurrent.futures._base.TimeoutError: Operation did not complete within the designated timeout.\n\n.nox/system-3-8/lib/python3.8/site-packages/google/api_core/future/polling.py:110: TimeoutError\u003c/pre\u003e\u003c/details\u003e","author":{"url":"https://github.com/flaky-bot[bot]","@type":"Person","name":"flaky-bot[bot]"},"datePublished":"2021-08-15T00:19:47.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":5},"url":"https://github.com/515/python-spanner/issues/515"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:812ed252-6245-1b06-055f-62b608f13342
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idD804:1E70:F5ED45:151E10E:6A4ED570
html-safe-noncec43c83559081e835ca0b53696b22c009141b31981d66caa585ef2180b06677d5
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEODA0OjFFNzA6RjVFRDQ1OjE1MUUxMEU6NkE0RUQ1NzAiLCJ2aXNpdG9yX2lkIjoiMTczNTEzMzA0Njk3NjU2Njg4IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac0db5507a2d75fff9376f708915bebdc849d1d8bcac8b84f965409a429944cbd1
hovercard-subject-tagissue:971019021
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/googleapis/python-spanner/515/issue_layout
twitter:imagehttps://opengraph.githubassets.com/5449508b5aeada897f2d8152d03f3ad78a64b651a38a670cc481cfcc7c8aef38/googleapis/python-spanner/issues/515
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/5449508b5aeada897f2d8152d03f3ad78a64b651a38a670cc481cfcc7c8aef38/googleapis/python-spanner/issues/515
og:image:altThis test failed! To configure my behavior, see the Flaky Bot documentation. If I'm commenting on this issue too often, add the flakybot: quiet label and I will stop commenting. commit: bdd5f8b bui...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameflaky-bot[bot]
hostnamegithub.com
expected-hostnamegithub.com
None41b6ab3ba6d20a71766ac245b5a4a94c6fc672a9cd4da7d44c1b33ab8bf6a21c
turbo-cache-controlno-preview
go-importgithub.com/googleapis/python-spanner git https://github.com/googleapis/python-spanner.git
octolytics-dimension-user_id16785467
octolytics-dimension-user_logingoogleapis
octolytics-dimension-repository_id226992630
octolytics-dimension-repository_nwogoogleapis/python-spanner
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id226992630
octolytics-dimension-repository_network_root_nwogoogleapis/python-spanner
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasec37fe3e3f5f306900bd5b6bee97463f66c938b2c
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/googleapis/python-spanner/issues/515#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgoogleapis%2Fpython-spanner%2Fissues%2F515
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgoogleapis%2Fpython-spanner%2Fissues%2F515
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=googleapis%2Fpython-spanner
Reloadhttps://github.com/googleapis/python-spanner/issues/515
Reloadhttps://github.com/googleapis/python-spanner/issues/515
Reloadhttps://github.com/googleapis/python-spanner/issues/515
Please reload this pagehttps://github.com/googleapis/python-spanner/issues/515
googleapis https://github.com/googleapis
python-spannerhttps://github.com/googleapis/python-spanner
Notifications https://github.com/login?return_to=%2Fgoogleapis%2Fpython-spanner
Fork 103 https://github.com/login?return_to=%2Fgoogleapis%2Fpython-spanner
Star 155 https://github.com/login?return_to=%2Fgoogleapis%2Fpython-spanner
Code https://github.com/googleapis/python-spanner
Issues 0 https://github.com/googleapis/python-spanner/issues
Pull requests 0 https://github.com/googleapis/python-spanner/pulls
Actions https://github.com/googleapis/python-spanner/actions
Projects https://github.com/googleapis/python-spanner/projects
Security and quality 0 https://github.com/googleapis/python-spanner/security
Insights https://github.com/googleapis/python-spanner/pulse
Code https://github.com/googleapis/python-spanner
Issues https://github.com/googleapis/python-spanner/issues
Pull requests https://github.com/googleapis/python-spanner/pulls
Actions https://github.com/googleapis/python-spanner/actions
Projects https://github.com/googleapis/python-spanner/projects
Security and quality https://github.com/googleapis/python-spanner/security
Insights https://github.com/googleapis/python-spanner/pulse
tests.system.test_table_api: test_db_list_tables_reload failedhttps://github.com/googleapis/python-spanner/issues/515#top
https://github.com/larkee
🚨This issue needs some love.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22%3Arotating_light%3A%22
api: spannerIssues related to the googleapis/python-spanner API.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22api%3A%20spanner%22
flakybot: flakyTells the Flaky Bot not to close or comment on this issue.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22flakybot%3A%20flaky%22
flakybot: issueAn issue filed by the Flaky Bot. Should not be added manually.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22flakybot%3A%20issue%22
priority: p1Important issue which blocks shipping the next release. Will be fixed prior to next release.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22priority%3A%20p1%22
type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22type%3A%20bug%22
https://github.com/apps/flaky-bot
flaky-bothttps://github.com/apps/flaky-bot
on Aug 15, 2021https://github.com/googleapis/python-spanner/issues/515#issue-971019021
the Flaky Bot documentationhttps://github.com/googleapis/repo-automation-bots/tree/main/packages/flakybot
bdd5f8bhttps://github.com/googleapis/python-spanner/commit/bdd5f8b201d1b442837d4fca1d631fe171e276b9
Build Statushttps://source.cloud.google.com/results/invocations/dee9f019-ea44-420a-8fc8-e42e0e5755b9
Spongehttp://sponge2/dee9f019-ea44-420a-8fc8-e42e0e5755b9
larkeehttps://github.com/larkee
🚨This issue needs some love.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22%3Arotating_light%3A%22
api: spannerIssues related to the googleapis/python-spanner API.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22api%3A%20spanner%22
flakybot: flakyTells the Flaky Bot not to close or comment on this issue.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22flakybot%3A%20flaky%22
flakybot: issueAn issue filed by the Flaky Bot. Should not be added manually.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22flakybot%3A%20issue%22
priority: p1Important issue which blocks shipping the next release. Will be fixed prior to next release.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22priority%3A%20p1%22
type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22type%3A%20bug%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.