Browse Source

Cleanup the initialization of the builtin HTTP server

pull/81/merge
Andrei 7 years ago
parent
commit
90098c1c27
No known key found for this signature in database GPG Key ID: 4D2A02C7D500E9D9
  1. 16
      disco/bot/bot.py

16
disco/bot/bot.py

@ -146,12 +146,18 @@ class Bot(LoggingClass):
if self.client.config.manhole_enable: if self.client.config.manhole_enable:
self.client.manhole_locals['bot'] = self self.client.manhole_locals['bot'] = self
# Setup HTTP server (Flask app) if enabled
self.http = None
if self.config.http_enabled: if self.config.http_enabled:
from flask import Flask try:
self.log.info('Starting HTTP server bound to %s:%s', self.config.http_host, self.config.http_port) from flask import Flask
self.http = Flask('disco') except ImportError:
self.http_server = WSGIServer((self.config.http_host, self.config.http_port), self.http) self.log.warning('Failed to enable HTTP server, Flask is not installed')
self.http_server_greenlet = gevent.spawn(self.http_server.serve_forever) 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.plugins = {}
self.group_abbrev = {} self.group_abbrev = {}

Loading…
Cancel
Save