Return polling interval: 200ms for real DynamoDB, 20ms for ExtendDB.
()
| 73 | |
| 74 | |
| 75 | def _poll_interval() -> float: |
| 76 | """Return polling interval: 200ms for real DynamoDB, 20ms for ExtendDB.""" |
| 77 | return 0.2 if _is_real_dynamodb() else 0.02 |
| 78 | |
| 79 | |
| 80 | def wait_for_active(client, table_name: str, timeout: float = 120.0) -> None: |
no test coverage detected