Skip to content

Commit

Permalink
fix: readded custom logging and missing __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
akelch committed Apr 4, 2022
1 parent 34bb7ba commit 89ba46c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

This file documents any relevant changes.

## [0.8.7] - 2022-04-04
- fix missing tasks folder

## [0.8.6] - 2022-04-04
- disabled custom logging

Expand Down
4 changes: 2 additions & 2 deletions src/app_server/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@



__version__ = "0.8.6"
__version__ = "0.8.7"

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

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


def envVars(application_id, args):
Expand Down
Empty file.

0 comments on commit 89ba46c

Please sign in to comment.