This function returns server lock information :param sid: server id :return:
(sid=None, did=None)
| 454 | @pga_login_required |
| 455 | @check_precondition |
| 456 | def locks(sid=None, did=None): |
| 457 | """ |
| 458 | This function returns server lock information |
| 459 | :param sid: server id |
| 460 | :return: |
| 461 | """ |
| 462 | return get_data(sid, did, 'locks.sql') |
| 463 | |
| 464 | |
| 465 | @blueprint.route('/prepared/', endpoint='prepared') |
nothing calls this directly
no test coverage detected