ClickHouse/tests/integration/test_s3_with_proxy/proxy-resolver/resolver.py

14 lines
193 B
Python
Raw Normal View History

import bottle
import random
@bottle.route('/')
def index():
if random.randrange(2) == 0:
return 'proxy1'
else:
return 'proxy2'
bottle.run(host='0.0.0.0', port=8080)