Files
mongo/jstests/sharding/libs/proxy_protocol_server.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
234 B
Python
Raw Normal View History

#! /usr/bin/env python3
"""
Python script to interact with proxy protocol server.
"""
from proxyprotocol.server.main import *
import sys
if __name__ == "__main__":
print("Starting proxy protocol server...")
sys.exit(main())