Changeset 42097fb in mod_gnutls for test/https-test-client.py
- Timestamp:
- Dec 4, 2019, 2:34:57 PM (14 months ago)
- Branches:
- asyncio, master, proxy-ticket
- Children:
- f9e13a5
- Parents:
- 6d3dc34
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/https-test-client.py
r6d3dc34 r42097fb 29 29 parser.add_argument('-p', '--port', type=int, 30 30 help='Access the specified port', default='8000') 31 parser.add_argument('--timeout', type=float, 32 help='Timeout for HTTP requests', default='5.0') 31 33 parser.add_argument('--test-config', type=argparse.FileType('r'), 32 34 required=True, help='load YAML test configuration') … … 54 56 55 57 for test_conn in conns: 56 test_conn.run(host=args.host, port=args.port )58 test_conn.run(host=args.host, port=args.port, timeout=args.timeout)
Note: See TracChangeset
for help on using the changeset viewer.