-
Notifications
You must be signed in to change notification settings - Fork 0
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
Changes from 10 commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
63d84a0
changes server and worker
cyri113 204ad4f
missing document start "---" (document-start)
cyri113 e100dd2
add .yamllint
cyri113 f890047
fix imports (isort)
cyri113 37e4733
black lint
cyri113 2630edb
isort fix
cyri113 9d48fcc
isort tasks
cyri113 8bcecb9
black server
cyri113 cda1315
disabled isort
cyri113 b3a90e5
fix worker
cyri113 0a5ef7c
Update Dockerfile
cyri113 9726f9d
fix worker
cyri113 77576ad
move traceloop to celery
cyri113 c1f61c8
use worker_process_init
cyri113 75e784c
black
cyri113 cfbf9f7
log trace init
cyri113 7bb0979
test traceloop
cyri113 d2fb665
formatting
cyri113 397164f
reformat
cyri113 f206fad
fix decorator?
cyri113 375cd23
flip tasks
cyri113 d857289
remove @task
cyri113 eae7999
init tracing
cyri113 e23dcad
fix format
cyri113 6c2d75b
init tracing?
cyri113 3e43510
more logs
cyri113 6de2522
move trace to utils
cyri113 d79e553
use worker_init
cyri113 769a75d
fix worker init
cyri113 146fa37
fix
cyri113 e47cc7f
fix init args
cyri113 0ecd970
add alot of signals
cyri113 ed3bd01
remove unrequired signals
cyri113 b0f1533
fix
cyri113 0974900
worker_process_init
cyri113 dd2e9f8
handlers
cyri113 df24bfb
handlers
cyri113 f1b0cf9
worker ready
cyri113 337a386
task_prerun
cyri113 622f64d
removed unused imports
cyri113 7ce28ab
Delete coverage/lcov.info
cyri113 34dac4f
imp traceloop
cyri113 3b3814b
remove unused import
cyri113 9621d44
isort celery
cyri113 00d1369
isort tasks.py
cyri113 2b7dec7
black tasks.py
cyri113 10e08d3
black tasks.py
cyri113 1eb0355
black tasks.py
cyri113 d565495
fix: isort linter issues!
amindadgar 50d95e8
remove log on finished
cyri113 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
--- | ||
|
||
name: Production CI/CD Pipeline | ||
|
||
on: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
--- | ||
|
||
name: Staging CI/CD Pipeline | ||
|
||
on: pull_request | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,7 @@ coverage.xml | |
.hypothesis/ | ||
.pytest_cache/ | ||
cover/ | ||
coverage/ | ||
|
||
# Translations | ||
*.mo | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[settings] | ||
check = false | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
rules: | ||
brackets: | ||
forbid: false | ||
min-spaces-inside: 1 | ||
max-spaces-inside: 1 | ||
min-spaces-inside-empty: -1 | ||
max-spaces-inside-empty: -1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
did we disable
isort
linter?