This function returns server config information :param sid: server id :return:
(sid=None)
| 482 | @pga_login_required |
| 483 | @check_precondition |
| 484 | def config(sid=None): |
| 485 | """ |
| 486 | This function returns server config information |
| 487 | :param sid: server id |
| 488 | :return: |
| 489 | """ |
| 490 | return get_data(sid, None, 'config.sql') |
| 491 | |
| 492 | |
| 493 | @blueprint.route('/log_formats', endpoint='log_formats') |
nothing calls this directly
no test coverage detected