Skip to content

Commit 89ba46c

Browse files
committed
fix: readded custom logging and missing __init__
1 parent 34bb7ba commit 89ba46c

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
This file documents any relevant changes.
44

5+
## [0.8.7] - 2022-04-04
6+
- fix missing tasks folder
7+
58
## [0.8.6] - 2022-04-04
69
- disabled custom logging
710

src/app_server/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515

16-
__version__ = "0.8.6"
16+
__version__ = "0.8.7"
1717

1818
class myWSGIRequestHandler(WSGIRequestHandler):
1919
def log_date_time_string(self):
@@ -230,7 +230,7 @@ def start_server(host, port, gunicorn_port, appFolder, appYaml, timeout, protoco
230230
app.wsgi_app = myDispatcher(app.wsgi_app, apps)
231231

232232
time.sleep(5)
233-
run_simple(host, port, app, use_debugger=False, use_reloader=True, threaded=True) #, request_handler=myWSGIRequestHandler
233+
run_simple(host, port, app, use_debugger=False, use_reloader=True, threaded=True, request_handler=myWSGIRequestHandler)
234234

235235

236236
def envVars(application_id, args):

src/app_server/tasks/proto/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)