Working on #1 - FDA import process works. 3 hours for first import, 1.25 hours on subsequent updates.
This commit is contained in:
@@ -1,14 +1,6 @@
|
||||
from mercy.MercyApplication import MercyApplication
|
||||
|
||||
class ScriptNameStripper(object):
|
||||
def __init__(self, app):
|
||||
self.app = app
|
||||
|
||||
def __call_(self, environ, start_response):
|
||||
environ['SCRIPT_NAME'] = ''
|
||||
return self.app(environ, start_response)
|
||||
|
||||
app = ScriptNameStripper(MercyApplication())
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run()
|
||||
import mercy.MercyApplication
|
||||
|
||||
app = get_application()
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run()
|
||||
|
||||
Reference in New Issue
Block a user