Remove funding file, add docker/compose for development project and fix (#18)

task names in logs
This commit is contained in:
Stan Triepels
2022-10-20 15:17:44 +02:00
committed by GitHub
parent c59f036158
commit 8822e7d409
4 changed files with 27 additions and 10 deletions

3
.github/FUNDING.yml vendored
View File

@@ -1,3 +0,0 @@
# These are supported funding model platforms
github: [koed00]

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.9
ENV PYTHONUNBUFFERED 1
RUN mkdir -p /app
WORKDIR /app
COPY . .
RUN pip install django blessed django-picklefield

View File

@@ -390,13 +390,13 @@ def monitor(result_queue: Queue, broker: Broker = None):
# signal execution done
post_execute.send(sender="django_q", task=task)
# log the result
info_name = f"{task['name']} ({task['func']})"
info_name = get_func_repr(task['func'])
if task["success"]:
# log success
logger.info(_(f"Processed [{info_name}]"))
logger.info(_(f"Processed {info_name} ({task['name']})"))
else:
# log failure
logger.error(_(f"Failed [{info_name}] - {task['result']}"))
logger.error(_(f"Failed {info_name} ({task['name']}) - {task['result']}"))
logger.info(_(f"{name} stopped monitoring results"))
@@ -422,8 +422,8 @@ def worker(
task_count += 1
# Get the function from the task
func = task["func"]
func_name = func.__name__ if hasattr(func, "__name__") else str(func)
logger.info(_(f'{proc_name} processing [{task["name"]}({func_name})]'))
func_name = get_func_repr(func)
logger.info(_(f'{proc_name} processing {func_name} ({task["name"]})'))
f = task["func"]
# if it's not an instance try to get it from the string
if not callable(task["func"]):
@@ -460,12 +460,13 @@ def get_func_repr(func):
# convert func to string
if inspect.isfunction(func):
return f"{func.__module__}.{func.__name__}"
elif inspect.ismethod(func):
elif inspect.ismethod(func) and hasattr(func.__self__, '__name__'):
return (
f"{func.__self__.__module__}."
f"{func.__self__.__name__}.{func.__name__}"
)
return func
else:
return str(func)
def save_task(task, broker: Broker):
"""

11
web-docker-compose.yaml Normal file
View File

@@ -0,0 +1,11 @@
version: '3'
services:
web:
restart: always
command: python manage.py runserver 0.0.0.0:8000
ports:
- "127.0.0.1:8000:8000"
build: .
volumes:
- .:/app