(cluster)
| 260 | |
| 261 | |
| 262 | def _shutdown_cluster(cluster): |
| 263 | if cluster.get_status() == 'running': |
| 264 | cluster.stop() |
| 265 | if cluster.get_status() != 'not-initialized': |
| 266 | cluster.destroy() |
| 267 | |
| 268 | |
| 269 | def create_pool(dsn=None, *, |
nothing calls this directly
no test coverage detected
searching dependent graphs…