Skip to content

Bigtable: 'TestTableAdminAPI.test_exists' flakes on ghost table #6245

Closed
@tseaver

Description

From Kokoro today:

________________________ TestTableAdminAPI.test_exists _________________________

self = <tests.system.TestTableAdminAPI testMethod=test_exists>

    def test_exists(self):
        temp_table_id = 'test-table_existence'
        temp_table = Config.INSTANCE.table(temp_table_id)
        self.assertFalse(temp_table.exists())
        temp_table.create()
        self.assertTrue(temp_table.exists())
        temp_table.delete()
>       self.assertFalse(temp_table.exists())
E       AssertionError: True is not false

Presumably, this is an eventual consistency thing.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

Labels

api: bigtableIssues related to the Bigtable API.flakytestingtype: processA process-related concern. May include testing, release, or the like.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions