Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changes server and worker #80

Merged
merged 50 commits into from
Jun 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
63d84a0
changes server and worker
cyri113 Jun 28, 2024
204ad4f
missing document start "---" (document-start)
cyri113 Jun 28, 2024
e100dd2
add .yamllint
cyri113 Jun 28, 2024
f890047
fix imports (isort)
cyri113 Jun 28, 2024
37e4733
black lint
cyri113 Jun 28, 2024
2630edb
isort fix
cyri113 Jun 28, 2024
9d48fcc
isort tasks
cyri113 Jun 28, 2024
8bcecb9
black server
cyri113 Jun 28, 2024
cda1315
disabled isort
cyri113 Jun 28, 2024
b3a90e5
fix worker
cyri113 Jun 28, 2024
0a5ef7c
Update Dockerfile
cyri113 Jun 28, 2024
9726f9d
fix worker
cyri113 Jun 28, 2024
77576ad
move traceloop to celery
cyri113 Jun 28, 2024
c1f61c8
use worker_process_init
cyri113 Jun 28, 2024
75e784c
black
cyri113 Jun 28, 2024
cfbf9f7
log trace init
cyri113 Jun 28, 2024
7bb0979
test traceloop
cyri113 Jun 28, 2024
d2fb665
formatting
cyri113 Jun 28, 2024
397164f
reformat
cyri113 Jun 28, 2024
f206fad
fix decorator?
cyri113 Jun 28, 2024
375cd23
flip tasks
cyri113 Jun 28, 2024
d857289
remove @task
cyri113 Jun 28, 2024
eae7999
init tracing
cyri113 Jun 28, 2024
e23dcad
fix format
cyri113 Jun 28, 2024
6c2d75b
init tracing?
cyri113 Jun 28, 2024
3e43510
more logs
cyri113 Jun 28, 2024
6de2522
move trace to utils
cyri113 Jun 28, 2024
d79e553
use worker_init
cyri113 Jun 28, 2024
769a75d
fix worker init
cyri113 Jun 28, 2024
146fa37
fix
cyri113 Jun 28, 2024
e47cc7f
fix init args
cyri113 Jun 28, 2024
0ecd970
add alot of signals
cyri113 Jun 28, 2024
ed3bd01
remove unrequired signals
cyri113 Jun 28, 2024
b0f1533
fix
cyri113 Jun 28, 2024
0974900
worker_process_init
cyri113 Jun 28, 2024
dd2e9f8
handlers
cyri113 Jun 28, 2024
df24bfb
handlers
cyri113 Jun 28, 2024
f1b0cf9
worker ready
cyri113 Jun 28, 2024
337a386
task_prerun
cyri113 Jun 28, 2024
622f64d
removed unused imports
cyri113 Jun 29, 2024
7ce28ab
Delete coverage/lcov.info
cyri113 Jun 29, 2024
34dac4f
imp traceloop
cyri113 Jun 29, 2024
3b3814b
remove unused import
cyri113 Jun 29, 2024
9621d44
isort celery
cyri113 Jun 29, 2024
00d1369
isort tasks.py
cyri113 Jun 29, 2024
2b7dec7
black tasks.py
cyri113 Jun 29, 2024
10e08d3
black tasks.py
cyri113 Jun 29, 2024
1eb0355
black tasks.py
cyri113 Jun 29, 2024
d565495
fix: isort linter issues!
amindadgar Jun 29, 2024
50d95e8
remove log on finished
cyri113 Jun 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ RUN chmod +x docker-entrypoint.sh
CMD ["./docker-entrypoint.sh"]

FROM base AS prod
CMD ["python3", "-m", "celery", "-A", "celery_app.server", "worker", "-l", "INFO"]
CMD ["celery", "-A", "tasks", "worker", "-l", "INFO"]
Loading
Loading