-
Notifications
You must be signed in to change notification settings - Fork 1
fix: remove OCA/queue_job, complete migration to job_worker #107
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 from all commits
e52dedb
617d1c4
624938d
ad2d2d7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -196,7 +196,7 @@ run_tests_docker() { | |||||
| --entrypoint "" \ | ||||||
| test \ | ||||||
| /opt/odoo/odoo/odoo-bin \ | ||||||
| --addons-path=/opt/odoo/odoo/addons,/opt/odoo/odoo/odoo/addons,/mnt/extra-addons/openspp,/mnt/extra-addons/server-ux,/mnt/extra-addons/server-tools,/mnt/extra-addons/queue,/mnt/extra-addons/odoo-job-worker,/mnt/extra-addons/server-backend,/mnt/extra-addons/rest-framework,/mnt/extra-addons/muk-it \ | ||||||
| --addons-path=/opt/odoo/odoo/addons,/opt/odoo/odoo/odoo/addons,/mnt/extra-addons/openspp,/mnt/extra-addons/server-ux,/mnt/extra-addons/server-tools,/mnt/extra-addons/odoo-job-worker,/mnt/extra-addons/server-backend,/mnt/extra-addons/rest-framework,/mnt/extra-addons/muk-it \ | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There appears to be a duplicated and incorrect path in the
Suggested change
|
||||||
| -d "$DB_NAME" \ | ||||||
| --db_host=db \ | ||||||
| --db_port=5432 \ | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,8 @@ | ||
| .. image:: https://odoo-community.org/readme-banner-image | ||
| :target: https://odoo-community.org/get-involved?utm_source=readme | ||
| :alt: Odoo Community Association | ||
|
|
||
| ==================== | ||
| OpenSPP Import Match | ||
| ==================== | ||
|
|
||
| .. | ||
| .. | ||
| !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
| !! This file is generated by oca-gen-addon-readme !! | ||
| !! changes will be overwritten. !! | ||
|
|
@@ -44,22 +40,22 @@ Key Capabilities | |
| - Skip duplicate creation or update existing records when matches are | ||
| found | ||
| - Process imports with more than 100 records asynchronously using | ||
| ``queue_job`` | ||
| ``job_worker`` | ||
| - Clear one2many/many2many associations before update to prevent | ||
| duplicate entries | ||
|
|
||
| Key Models | ||
| ~~~~~~~~~~ | ||
|
|
||
| +-----------------------------+---------------------------------------+ | ||
| | Model | Description | | ||
| +=============================+=======================================+ | ||
| | ``spp.import.match`` | Matching rule configuration for a | | ||
| | | specific model | | ||
| +-----------------------------+---------------------------------------+ | ||
| | ``spp.import.match.fields`` | Individual fields used in a rule, | | ||
| | | supports sub-fields | | ||
| +-----------------------------+---------------------------------------+ | ||
| +-----------------------------+----------------------------------------+ | ||
| | Model | Description | | ||
| +=============================+========================================+ | ||
| | ``spp.import.match`` | Matching rule configuration for a | | ||
| | | specific model | | ||
| +-----------------------------+----------------------------------------+ | ||
| | ``spp.import.match.fields`` | Individual fields used in a rule, | | ||
| | | supports sub-fields | | ||
| +-----------------------------+----------------------------------------+ | ||
|
|
||
| Configuration | ||
| ~~~~~~~~~~~~~ | ||
|
|
@@ -107,7 +103,7 @@ Extension Points | |
| Dependencies | ||
| ~~~~~~~~~~~~ | ||
|
|
||
| ``base``, ``spp_base_common``, ``base_import``, ``queue_job``, | ||
| ``base``, ``spp_base_common``, ``base_import``, ``job_worker``, | ||
| ``spp_security`` | ||
|
|
||
| **Table of contents** | ||
|
|
@@ -149,4 +145,4 @@ Current maintainers: | |
|
|
||
| This module is part of the `OpenSPP/OpenSPP2 <https://github.com/OpenSPP/OpenSPP2/tree/19.0/spp_import_match>`_ project on GitHub. | ||
|
|
||
| You are welcome to contribute. | ||
| You are welcome to contribute. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,4 +3,3 @@ | |
| from . import base | ||
| from . import base_import | ||
| from . import import_match | ||
| from . import queue_job | ||
This file was deleted.
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.
There appears to be a duplicated and incorrect path in the
addons_path. The path/opt/odoo/odoo/odoo/addonsis likely a typo and is redundant, as the correct path/opt/odoo/odoo/addonsis already included. This could cause issues with addon loading or performance. It's best to remove the incorrect entry.