Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ per-file-ignores =
./tests/test_web/test_s3_utils.py: D103
./tests/test_web/test_api_v1.py: D103,F541
./tests/test_workers/test_tasks/test_build.py: D103,E231
./tests/test_workers/test_tasks/test_build_containerized_fbc_operations.py: F841,E501
./tests/test_workers/test_tasks/test_build_regenerate_bundle.py: D103,E241,E222
./tests/test_workers/test_tasks/test_opm_operations.py: D103, E203
./tests/test_web/test_migrations.py: E231,D103
Expand Down
32 changes: 32 additions & 0 deletions docs/module_documentation/iib.workers.tasks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ iib.workers.tasks.build\_fbc\_operations module
:undoc-members:
:show-inheritance:

iib.workers.tasks.build\_containerized\_fbc\_operations module
--------------------------------------------------------------

.. automodule:: iib.workers.tasks.build_containerized_fbc_operations
:members:
:undoc-members:
:show-inheritance:

iib.workers.tasks.build\_merge\_index\_image module
---------------------------------------------------

Expand Down Expand Up @@ -95,6 +103,30 @@ iib.workers.tasks.opm\_operations module
:undoc-members:
:show-inheritance:

iib.workers.tasks.konflux\_utils module
---------------------------------------

.. automodule:: iib.workers.tasks.konflux_utils
:members:
:undoc-members:
:show-inheritance:

iib.workers.tasks.oras\_utils module
------------------------------------

.. automodule:: iib.workers.tasks.oras_utils
:members:
:undoc-members:
:show-inheritance:

iib.workers.tasks.git\_utils module
-----------------------------------

.. automodule:: iib.workers.tasks.git_utils
:members:
:undoc-members:
:show-inheritance:

iib.workers.tasks.utils module
------------------------------

Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ flask
flask-login
flask-migrate
flask-sqlalchemy
kubernetes
opentelemetry-api
opentelemetry-exporter-otlp
opentelemetry-instrumentation
Expand Down
6 changes: 4 additions & 2 deletions iib/web/api_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@
handle_rm_request,
)
from iib.workers.tasks.build_add_deprecations import handle_add_deprecations_request
from iib.workers.tasks.build_fbc_operations import handle_fbc_operation_request
from iib.workers.tasks.build_containerized_fbc_operations import (
handle_containerized_fbc_operation_request,
)
from iib.workers.tasks.build_recursive_related_bundles import (
handle_recursive_related_bundles_request,
)
Expand Down Expand Up @@ -1332,7 +1334,7 @@ def fbc_operations() -> Tuple[flask.Response, int]:
safe_args = _get_safe_args(args, payload)
error_callback = failed_request_callback.s(request.id)
try:
handle_fbc_operation_request.apply_async(
handle_containerized_fbc_operation_request.apply_async(
args=args, link_error=error_callback, argsrepr=repr(safe_args), queue=celery_queue
)
except kombu.exceptions.OperationalError:
Expand Down
1 change: 1 addition & 0 deletions iib/workers/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ class Config(object):
'iib.workers.tasks.build_create_empty_index',
'iib.workers.tasks.build_fbc_operations',
'iib.workers.tasks.build_add_deprecations',
'iib.workers.tasks.build_containerized_fbc_operations',
'iib.workers.tasks.general',
]
# Path to hidden location of SQLite database
Expand Down
Loading