Mbonea commited on
Commit
2454dee
·
1 Parent(s): 6e61680

removed logs

Browse files
Files changed (2) hide show
  1. App/Worker.py +1 -1
  2. Dockerfile +1 -1
App/Worker.py CHANGED
@@ -12,7 +12,7 @@ celery = Celery()
12
  celery.config_from_object(celery_config)
13
  celery.conf.update(
14
  # Other Celery configuration settings
15
- CELERYD_LOG_LEVEL="DEBUG", # Set log level to DEBUG for the worker
16
  )
17
 
18
 
 
12
  celery.config_from_object(celery_config)
13
  celery.conf.update(
14
  # Other Celery configuration settings
15
+ # CELERYD_LOG_LEVEL="DEBUG", # Set log level to DEBUG for the worker
16
  )
17
 
18
 
Dockerfile CHANGED
@@ -68,6 +68,6 @@ RUN pip install --no-cache-dir -r requirements.txt
68
  RUN rm thorium-browser_117.0.5938.157_amd64.deb
69
 
70
  # Command to run the application
71
- CMD python -m uvicorn App.app:app --host 0.0.0.0 --port 7860 & python -m celery -A App.Worker.celery worker -c 4 --loglevel=DEBUG
72
 
73
  EXPOSE 7860
 
68
  RUN rm thorium-browser_117.0.5938.157_amd64.deb
69
 
70
  # Command to run the application
71
+ CMD python -m uvicorn App.app:app --host 0.0.0.0 --port 7860 & python -m celery -A App.Worker.celery worker -c 4
72
 
73
  EXPOSE 7860