-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
[16.0][ADD] queue_job_chunk: add module #20
Conversation
…ion according to user, modify tests
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.
LGTM , unit tests are there
what about squashing a few commits like the "wip" ones or some of the README adjustments? Nowadays people try to have a clean and meaningful module history in the OCA, this is useful when using git blame to hunt for an explanation or when porting modules from serie to serie... |
except RetryableJobError: | ||
raise | ||
except Exception as e: | ||
if DEBUG_MODE: |
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.
Could be replaced with something like
if "pdb" in config.get("dev_mode"):
Instead of hardcoded constant
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.
code review LGTM cleaner without component
This PR has the |
Probably need to go to queue-job repository ? !! |
There hasn't been any activity on this pull request in the past 4 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. |
PR moved to OCA/queue#737 |
Adds the notion of queue job chunks, essentially a queue job with some metadata.
Useful to store the JSON received by an API request before their treatment in odoo.
cc @florian-dacosta @kevinkhao @bealdav @sebastienbeau