Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mxsasha committed Oct 18, 2024
1 parent 5a5bdb7 commit 13a022d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker/defaults.env
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ DEBUG=False
# Set log level for various loggers
DJANGO_LOG_LEVEL=INFO
INTERNETNL_LOG_LEVEL=INFO
CELERY_LOG_LEVEL=INFO
CELERY_LOG_LEVEL=ERROR
# Enable debug loglevel for other loggers
DEBUG_LOG=False
# Enable debug logging on internal Unbound library
Expand Down Expand Up @@ -163,7 +163,7 @@ INTEGRATION_TESTS=False
DEFAULT_MEMORY_LIMIT=1G

# Memory limit for containers with high memory usage
HIGH_MEMORY_LIMIT=10G
HIGH_MEMORY_LIMIT=5G

# Amount of concurrent worker (green)threads
WORKER_CONCURRENCY=500
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
restart: unless-stopped

ports:
- 0.0.0.0:8080:8080
- 8080:8080

volumes:
- ./port-expose/nginx_templates/:/etc/nginx/templates/
Expand Down
2 changes: 1 addition & 1 deletion internetnl/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
# # Application logging:
DJANGO_LOG_LEVEL = getenv("DJANGO_LOG_LEVEL", "INFO")
INTERNETNL_LOG_LEVEL = getenv("INTERNETNL_LOG_LEVEL", "INFO")
CELERY_LOG_LEVEL = getenv("CELERY_LOG_LEVEL", "INFO")
CELERY_LOG_LEVEL = getenv("CELERY_LOG_LEVEL", "ERROR")

# Infrastructure
# # Database
Expand Down

0 comments on commit 13a022d

Please sign in to comment.