Poll all tables until they reach ACTIVE status.
(client)
| 183 | # --------------------------------------------------------------------------- |
| 184 | |
| 185 | def wait_for_tables(client) -> None: |
| 186 | """Poll all tables until they reach ACTIVE status.""" |
| 187 | section("Step 2: Wait for Tables to Become ACTIVE") |
| 188 | for name in [USERS_TABLE, ORDERS_TABLE, TOURNAMENT_TABLE]: |
| 189 | wait_for_active(client, name) |
| 190 | # --------------------------------------------------------------------------- |
| 191 | # Step 3: Load data with PutItem and BatchWriteItem |
| 192 | # --------------------------------------------------------------------------- |
no test coverage detected