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.

13 lines
235 B
Python
Raw Normal View History

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