Browse Source
Cleanup the initialization of the builtin HTTP server
pull/81/merge
Andrei
7 years ago
No known key found for this signature in database
GPG Key ID: 4D2A02C7D500E9D9
1 changed files with
11 additions and
5 deletions
-
disco/bot/bot.py
|
|
@ -146,12 +146,18 @@ class Bot(LoggingClass): |
|
|
|
if self.client.config.manhole_enable: |
|
|
|
self.client.manhole_locals['bot'] = self |
|
|
|
|
|
|
|
# Setup HTTP server (Flask app) if enabled |
|
|
|
self.http = None |
|
|
|
if self.config.http_enabled: |
|
|
|
from flask import Flask |
|
|
|
self.log.info('Starting HTTP server bound to %s:%s', self.config.http_host, self.config.http_port) |
|
|
|
self.http = Flask('disco') |
|
|
|
self.http_server = WSGIServer((self.config.http_host, self.config.http_port), self.http) |
|
|
|
self.http_server_greenlet = gevent.spawn(self.http_server.serve_forever) |
|
|
|
try: |
|
|
|
from flask import Flask |
|
|
|
except ImportError: |
|
|
|
self.log.warning('Failed to enable HTTP server, Flask is not installed') |
|
|
|
else: |
|
|
|
self.log.info('Starting HTTP server bound to %s:%s', self.config.http_host, self.config.http_port) |
|
|
|
self.http = Flask('disco') |
|
|
|
self.http_server = WSGIServer((self.config.http_host, self.config.http_port), self.http) |
|
|
|
self.http_server_greenlet = gevent.spawn(self.http_server.serve_forever) |
|
|
|
|
|
|
|
self.plugins = {} |
|
|
|
self.group_abbrev = {} |
|
|
|