google/clusterfuzz

Local mode binds to 0.0.0.0?

Manouchehri opened this issue · 1 comments

Is there a reason why we need to bind to 0.0.0.0 in local mode (instead of 127.0.0.1)?

cron_server = common.execute_async(
'gunicorn -b :{port} main:app'.format(port=constants.CRON_SERVICE_PORT),
cwd=os.path.join('src', 'appengine'))
try:
common.execute(
'gunicorn -b :{port} main:app'.format(
port=constants.DEV_APPSERVER_PORT),
cwd=os.path.join('src', 'appengine'))

I'll fix this.