jenkins-bot has submitted this change and it was merged. Change subject: Make quarry.wsgi listen on all interfaces when run manually ......................................................................
Make quarry.wsgi listen on all interfaces when run manually Change-Id: Ie4f6885e5a5b612dc13453a49599f866d85c1a65 --- M quarry.wsgi 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: Yuvipanda: Looks good to me, approved jenkins-bot: Verified diff --git a/quarry.wsgi b/quarry.wsgi index f87e152..5b1e7aa 100644 --- a/quarry.wsgi +++ b/quarry.wsgi @@ -1,4 +1,4 @@ from quarry.web.app import app as application if __name__ == '__main__': - application.run(debug=True) + application.run(debug=True, host='0.0.0.0') -- To view, visit https://gerrit.wikimedia.org/r/222706 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ie4f6885e5a5b612dc13453a49599f866d85c1a65 Gerrit-PatchSet: 1 Gerrit-Project: analytics/quarry/web Gerrit-Branch: master Gerrit-Owner: Yuvipanda <[email protected]> Gerrit-Reviewer: Yuvipanda <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
