Skip to content

Commit

Permalink
run the server without debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Ambika Sukla committed Jan 24, 2024
1 parent f97814c commit c2218a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nlm_ingestor/ingestion_daemon/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def parse_document(

def main():
logger.info("Starting ingestor service..")
app.run(host="0.0.0.0", port=5001, debug=True)
app.run(host="0.0.0.0", port=5001, debug=False)

if __name__ == "__main__":
main()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
setup(
name='nlm-ingestor',
version='0.1.3',
version='0.1.4',
description='Parsers and ingestors for different file types and formats',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit c2218a1

Please sign in to comment.