Skip to content

Commit

Permalink
release/v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Oct 10, 2017
2 parents 54e8260 + 97524dc commit 097c111
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/os_tornado/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.1.2
4 changes: 3 additions & 1 deletion src/os_tornado/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ def run(self):
self._manager.load_request_handlers()
app = tornado.web.Application(
self._manager.get_all_request_handlers(),
get_tornado_app_settings(self.settings))
default_host=self.settings.get('DEFAULT_HOST', ''),
transforms=None,
**get_tornado_app_settings(self.settings))
app.manager = self._manager
port = self.settings.get_int("HTTP_PORT")
bind_address = self.settings.get('BIND_ADDRESS', '')
Expand Down
1 change: 1 addition & 0 deletions src/os_tornado/settings/default_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@

HTTP_PORT = 8080
BIND_ADDRESS = ''
DEFAULT_HOST = ''

0 comments on commit 097c111

Please sign in to comment.